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
S
SocialAgents3D
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Thomas Pitiot
SocialAgents3D
Commits
d7cf160e
Commit
d7cf160e
authored
Mar 11, 2015
by
Thomas Pitiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
surfaces OK pb couleurs
parent
f0feda38
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
include/triangle.h
include/triangle.h
+23
-0
No files found.
include/triangle.h
0 → 100644
View file @
d7cf160e
#ifndef _Triangle_H_
#define _Triangle_H_
class
Surface
;
class
Triangle
{
public:
Triangle
(
VEC3
p1
,
VEC3
p2
,
VEC3
p3
,
Surface
*
surf
=
NULL
,
Dart
d
=
NIL
,
float
rouge
=
0
,
float
green
=
0
,
float
blue
=
1.0
f
)
:
p1
(
p1
),
p2
(
p2
),
p3
(
p3
),
surf
(
surf
),
cell
(
d
),
r
(
rouge
),
g
(
green
),
b
(
blue
)
{
}
// colors
VEC3
p1
,
p2
,
p3
;
Surface
*
surf
;
Dart
cell
;
float
r
;
float
g
;
float
b
;
}
;
#endif
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