Intersaction of 3 Spheres

Namespace: VVVV.Utils.VMath
Assembly: VVVV.Utils (in VVVV.Utils.dll) Version: 1.0.4694.10871

Syntax

C#
public static int Trilateration(
	Vector3D P1,
	Vector3D P2,
	Vector3D P3,
	double r1,
	double r2,
	double r3,
	out Vector3D S1,
	out Vector3D S2
)

Parameters

P1
Type: VVVV.Utils.VMath..::..Vector3D
Center sphere 1
P2
Type: VVVV.Utils.VMath..::..Vector3D
Center sphere 2
P3
Type: VVVV.Utils.VMath..::..Vector3D
Center sphere 3
r1
Type: System..::..Double
Radius sphere 1
r2
Type: System..::..Double
Radius sphere 2
r3
Type: System..::..Double
Radius sphere 3
S1
Type: VVVV.Utils.VMath..::..Vector3D%
Intersection Point 1
S2
Type: VVVV.Utils.VMath..::..Vector3D%
Intersection Point 2

Return Value

Number of intersections

See Also