Interface IVertexGeometry

IVertexGeometry interface

Represents the interface that must be implemented by a geometry vertex fragment.

public interface IVertexGeometry

Methods

NameDescription
Add(ref VertexGeometryDelta)
ApplyTransform(ref Matrix4x4)
GetPosition()Gets the position of the vertex.
SetNormal(ref Vector3)
SetPosition(ref Vector3)
SetTangent(ref Vector4)
Subtract(IVertexGeometry)calculates the difference between this vertex and baseValue
TryGetNormal(out Vector3)Tries to get the normal of the vertex.
TryGetTangent(out Vector4)Tries to get the tangent of the vertex.

Remarks

Implemented by:

VertexPosition

VertexPositionNormal

VertexPositionNormalTangent

VertexGeometryDelta

See Also