~ubuntu-branches/ubuntu/utopic/castle-game-engine/utopic

« back to all changes in this revision

Viewing changes to src/x3d/doc/x3d_nodes/2/Geometry2D.txt

  • Committer: Package Import Robot
  • Author(s): Abou Al Montacir
  • Date: 2013-04-27 18:06:40 UTC
  • Revision ID: package-import@ubuntu.com-20130427180640-eink4nmwzuivez1c
Tags: upstream-4.0.1
ImportĀ upstreamĀ versionĀ 4.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Arc2D : X3DGeometryNode { 
 
2
  SFFloat []       endAngle   Pi/2   [-2Pi,2Pi]
 
3
  SFFloat []       radius     1     (0,Inf)
 
4
  SFFloat []       startAngle 0     [-2Pi,2Pi]
 
5
}
 
6
 
 
7
ArcClose2D : X3DGeometryNode { 
 
8
  SFString []       closureType "PIE" ["PIE"|"CHORD"]
 
9
  SFFloat  []       endAngle    Pi/2   [-2Pi,2Pi]
 
10
  SFFloat  []       radius      1     (0,Inf)
 
11
  SFBool   []       solid       FALSE
 
12
  SFFloat  []       startAngle  0     [-2Pi,2Pi]
 
13
}
 
14
 
 
15
Circle2D : X3DGeometryNode { 
 
16
  SFFloat []       radius   1     (0,Inf)
 
17
}
 
18
 
 
19
Disk2D : X3DGeometryNode { 
 
20
 SFFloat []       innerRadius 0     [0,Inf)
 
21
 SFFloat []       outerRadius 1     (0,Inf)
 
22
 SFBool  []       solid       FALSE
 
23
}
 
24
 
 
25
Polyline2D : X3DGeometryNode { 
 
26
  MFVec2f []       lineSegments []    (-Inf,Inf)
 
27
}
 
28
 
 
29
Polypoint2D : X3DGeometryNode { 
 
30
  MFVec2f [in,out] point    []    (-Inf,Inf)
 
31
}
 
32
 
 
33
Rectangle2D : X3DGeometryNode { 
 
34
  SFVec2f []       size     2 2   (0,Inf)
 
35
  SFBool  []       solid    FALSE
 
36
}
 
37
 
 
38
TriangleSet2D : X3DGeometryNode { 
 
39
  MFVec2f [in,out] vertices []    (-Inf,Inf)
 
40
  SFBool  []       solid    FALSE
 
41
}