Click or drag to resize
SoPrimitiveVertex Structure
Represents a vertex of a generated primitive.

Namespace: OIV.Inventor
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public struct SoPrimitiveVertex

The SoPrimitiveVertex type exposes the following members.

Methods
  NameDescription
Public methodEquals
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Public methodGetDetail Obsolete.
Use Detail property instead.
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from ValueType.)
Public methodGetMaterialIndex Obsolete.
Use MaterialIndex property instead. Returns the index into the current set of materials of the material active at the vertex.
Public methodGetNormal Obsolete.
Use Normal property instead. Returns the normal in object space.
Public methodGetPoint Obsolete.
Use Point property instead. Returns the surface point in object space.
Public methodGetTextureCoords Obsolete.
Use TextureCoords property instead. Returns the texture coordinates in object space.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Properties
  NameDescription
Public propertyDetail
Detail giving more information about the vertex. Note that the reference may be null if there is no more info.
Public propertyMaterialIndex
Index into the current set of materials of the material active at the vertex.
Public propertyNormal
Normal vector in object space.
Public propertyPoint
Surface point in object space.
Public propertyPointDetail
Point detail giving more information about the vertex. Note that the reference may be null if there is no more info.
Public propertyTextureCoords
Texture coordinates in object space.
Top
Remarks
An SoPrimitiveVertex represents a vertex of a primitive (triangle, line segment, or point) that is being generated by an SoCallbackAction. It contains an object-space point, normal, texture coordinates, material index, and a pointer to an instance of an SoDetail subclass. This detail may contain more information about the vertex, or may be a reference if there is no such info.
See Also