File: SoPointDetail.ivm

package info (click to toggle)
inventor 2.1.5-10-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 32,884 kB
  • ctags: 21,728
  • sloc: ansic: 33,861; lisp: 7,361; cpp: 3,874; yacc: 369; sh: 358; perl: 234; awk: 141; makefile: 74; csh: 35; sed: 11
file content (41 lines) | stat: -rw-r--r-- 1,460 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
NAME SoPointDetail SoPtDtl "" {
stores detail information about vertex-based shapes made of points
}

INCLUDE details/SoPointDetail.h

DESC {
This class contains detail information about a point in a vertex-based
shape made of points. It is used for returning information about an
intersection with or primitives generated by a set of points. It is
also used by \cSoFaceDetail\. and \cSoLineDetail\. to return
information about the vertices of faces and line segments.
}

METHOD "" SoPointDetail() {}
METHOD "" virtual ~SoPointDetail() { Constructor and destructor. }

METHOD getCoordInd int32_t getCoordinateIndex() const {
Returns the index of the point within the relevant coordinate node.
}

METHOD getMtlInd int32_t getMaterialIndex() const {
Returns the index of the material for the point within the relevant
material node.
}

METHOD getNormInd int32_t getNormalIndex() const {
Returns the index of the surface normal at the point within the
relevant normal node. Note that if normals have been generated for a
shape, the index may not be into an existing normal node.
}

METHOD getTexCoordInd int32_t getTextureCoordIndex() const {
Returns the index of the texture coordinates for the point within the
relevant normal node. Note that if texture coordinates have been
generated for a shape, the index may not be into an existing texture
coordinate node.
}

ALSO { SoDetail, SoPickedPoint, SoPrimitiveVertex, SoVertexShape,
	SoFaceDetail, SoLineDetail }