1SoDetail(3IV)() SoDetail(3IV)()
2
3
4
6 SoDetail — base class for describing detail information about a shape
7 node
8
10 SoDetail
11
13 #include <Inventor/details/SoDetail.h>
14
15 Methods from class SoDetail:
16
17 SoDetail * copy() const
18 static SoType getClassTypeId()
19 virtual SoType getTypeId() const
20 SbBool isOfType(SoType type) const
21
22
24 SoDetail is the abstract base class for all detail classes. A detail
25 contains shape-specific information about a particular shape during
26 picking and primitive generation. Subclasses store information based on
27 the particular type of shape.
28
30 SoDetail * copy() const
31 Returns an instance that is a copy of this instance. The caller is
32 responsible for deleting the copy when it is no longer needed.
33
34 static SoType getClassTypeId()
35 Returns type identifier for this class.
36
37 virtual SoType getTypeId() const
38 Returns the type identifier for a specific instance.
39
40 SbBool isOfType(SoType type) const
41 Returns TRUE if this object is of the type specified in type or is
42 derived from that type. Otherwise, it returns FALSE.
43
44
46 SoConeDetail, SoCubeDetail, SoCylinderDetail, SoDetailList, SoFaceDe‐
47 tail, SoLineDetail, SoNodeKitDetail, SoPickedPoint, SoPointDetail,
48 SoPrimitiveVertex, SoTextDetail
49
50
51
52
53 SoDetail(3IV)()