Method | Description | |
---|---|---|
CrossProduct ( |
Calculates the cross product of two points as vectors positioned on the origin.
|
|
DistanceTo ( |
Calculates the Euclidian distance between this point and another point.
|
|
Equals ( object obj ) : bool | ||
GetHashCode ( ) : int | ||
Magnitude ( ) : double |
Calculate the magnitude of the vector formed between the origin and this point.
|
|
MoveTowards ( |
Calculate the result of moving this point a given distance towards another point.
|
|
Point3D ( double x = 0.0, double y = 0.0, double z = 0.0 ) : System | ||
ToString ( ) : string | ||
operator ( ) : Point3D | ||
operator ( ) : bool |
public CrossProduct ( |
||
p | The point to cross with. | |
return |
public DistanceTo ( |
||
p | The point to measure the distance to. | |
return | double |
public MoveTowards ( |
||
p | The point to move towards. | |
distance | double | The distance to move. It is possible to move past either endpoint. |
return |
public Point3D ( double x = 0.0, double y = 0.0, double z = 0.0 ) : System | ||
x | double | |
y | double | |
z | double | |
return | System |