Méthode | Description | |
---|---|---|
Circle ( ) : System |
Creates a new unit Circle at the origin.
|
|
Circle ( Point p1, Point p2, Point p3 ) : System |
Creates a new Circle from three non-linear points.
|
|
Circle ( Point origin, double radius ) : System |
Creates a new Circle with the given radius centered at the given center point coordinates.
|
|
Circle ( double x, double y, double radius ) : System |
Creates a new Circle with the given radius centered at the given
|
|
Circle ( float x, float y, double radius ) : System |
Creates a new Circle with the given radius centered at the given
|
|
DistanceToPoint ( Point point ) : double |
Computes the distance from circle to point.
|
public Circle ( Point p1, Point p2, Point p3 ) : System | ||
p1 | Point | The first point. |
p2 | Point | The second point. |
p3 | Point | The third point. |
Résultat | System |
public Circle ( Point origin, double radius ) : System | ||
origin | Point | The point at the circle's center. |
radius | double | The circle radius. |
Résultat | System |
public Circle ( double x, double y, double radius ) : System | ||
x | double | The x-coordinate of the circle's center. |
y | double | The y-coordinate of the circle's center. |
radius | double | The circle radius. |
Résultat | System |
public Circle ( float x, float y, double radius ) : System | ||
x | float | The x-coordinate of the circle's center. |
y | float | The y-coordinate of the circle's center. |
radius | double | The circle radius. |
Résultat | System |
public DistanceToPoint ( Point point ) : double | ||
point | Point | The point to have its distance from the circle computed. |
Résultat | double |