Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CGoGN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
David Cazier
CGoGN
Commits
6abb69bd
Commit
6abb69bd
authored
Jan 28, 2011
by
Pierre Kraemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
linearTest ok
parent
ae536cbb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
12 deletions
+9
-12
Apps/Examples/linearTest.cpp
Apps/Examples/linearTest.cpp
+3
-4
Apps/Examples/linearTest.h
Apps/Examples/linearTest.h
+6
-8
No files found.
Apps/Examples/linearTest.cpp
View file @
6abb69bd
...
...
@@ -1033,15 +1033,14 @@ int main(int argc, char** argv)
char
*
filename
=
argv
[
1
]
;
mgw
->
position
=
myMap
.
addAttribute
<
PFP
::
VEC3
>
(
VERTEX_ORBIT
,
"position"
)
;
GLint
t1
=
glutGet
(
GLUT_ELAPSED_TIME
)
;
bool
success
=
Algo
::
Import
::
importMesh
<
PFP
>
(
myMap
,
filename
,
mgw
->
position
,
Algo
::
Import
::
ImportSurfacique
::
UNKNOWNSURFACE
)
;
if
(
!
success
)
std
::
vector
<
std
::
string
>
attrNames
;
if
(
!
Algo
::
Import
::
importMesh
<
PFP
>
(
myMap
,
filename
,
attrNames
)
)
{
std
::
cerr
<<
"could not import "
<<
filename
<<
std
::
endl
;
return
1
;
}
mgw
->
position
=
myMap
.
getAttribute
<
PFP
::
VEC3
>
(
VERTEX_ORBIT
,
attrNames
[
0
])
;
GLint
t2
=
glutGet
(
GLUT_ELAPSED_TIME
)
;
GLfloat
seconds
=
(
t2
-
t1
)
/
1000.0
f
;
std
::
cout
<<
"import: "
<<
seconds
<<
" sec"
<<
std
::
endl
;
...
...
Apps/Examples/linearTest.h
View file @
6abb69bd
...
...
@@ -53,16 +53,18 @@
#endif
using
namespace
CGoGN
;
struct
PFP
{
// definition de la carte
struct
PFP
{
// definition of the map
typedef
Map2
MAP
;
// definition
du type de reel utilis
e
// definition
of the type of real valu
e
typedef
float
REAL
;
// other types definitions
typedef
Geom
::
Vector
<
3
,
REAL
>
VEC3
;
typedef
Geom
::
Vector
<
6
,
REAL
>
VEC6
;
typedef
Geom
::
Matrix
<
3
,
3
,
REAL
>
MATRIX33
;
...
...
@@ -71,12 +73,8 @@ struct PFP {
typedef
AttributeHandler
<
VEC3
>
TVEC3
;
typedef
AttributeHandler
<
REAL
>
TREAL
;
typedef
AttributeHandler
<
MATRIX33
>
TFRAME
;
typedef
AttributeHandler
<
MATRIX36
>
TRGBFUNCS
;
};
INIT_STATICS_MAP
()
;
typedef
PFP
::
MAP
MAP
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment