Create a MCvPoint3D32f structure with the specific x and y coordinates

Namespace:  Emgu.CV.Structure
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public MCvPoint3D32f(
	float x,
	float y,
	float z
)
Visual Basic (Declaration)
Public Sub New ( _
	x As Single, _
	y As Single, _
	z As Single _
)
Visual C++
public:
MCvPoint3D32f(
	float x, 
	float y, 
	float z
)

Parameters

x
Type: System..::.Single
x-coordinate
y
Type: System..::.Single
y-coordinate
z
Type: System..::.Single
z-coordinate

See Also