Property | Type | Description | |
---|---|---|---|
UnitX | DoublePoint | ||
UnitY | DoublePoint | ||
UnitZ | DoublePoint | ||
x | double | ||
y | double | ||
z | double |
Method | Description | |
---|---|---|
Cross ( DoublePoint p ) : DoublePoint |
Computes the cross product between this DoublePoint and p.
|
|
Dot ( DoublePoint p ) : double |
Computes the dot product between this DoublePoint and p.
|
|
DoublePoint ( double x, double y, double z ) |
Constructs a new DoublePoint.
|
|
Sub ( DoublePoint p ) : DoublePoint |
Subtracts another DoublePoint from this point.
|
public Cross ( DoublePoint p ) : DoublePoint | ||
p | DoublePoint | The second point. |
return | DoublePoint |
public Dot ( DoublePoint p ) : double | ||
p | DoublePoint | The second point. |
return | double |
public DoublePoint ( double x, double y, double z ) | ||
x | double | x-coordinate |
y | double | y-coordinate |
z | double | z-coordinate |
public Sub ( DoublePoint p ) : DoublePoint | ||
p | DoublePoint | The vector to subtract from this one. |
return | DoublePoint |