CustomVertex.PositionTextured.PositionTextured(Vector3,Single,Single) Constructor (Microsoft.DirectX.Direct3D)
Initializes a new instance of the CustomVertex.PositionTextured class.
Definition
Visual Basic Public Sub New( _
ByVal pos As Vector3, _
ByVal u As Single, _
ByVal v As Single _
)C# public PositionTextured(
Vector3 pos,
float u,
float v
);C++ public:
PositionTextured(
Vector3 pos,
float u,
float v
);JScript public function PositionTextured(
pos : Vector3,
u : float,
v : float
);
Parameters
pos Microsoft.DirectX.Vector3
A Vector3 object that contains the vertex position.u System.Single
Floating-point value that represents the u component of the texture coordinate.v System.Single
Floating-point value that represents the v component of the texture coordinate.