Initializes a new instance of the vec3 class

Namespace: Visualisierung_BSP2
Assembly: Visualisierung_BSP2 (in Visualisierung_BSP2.exe) Version: 1.0.0.0 (1.0.0.0)

Syntax

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

Parameters

x
Type: System..::..Single
First component
y
Type: System..::..Single
Second component
z
Type: System..::..Single
Third component

See Also