circles
circle oriented in space
f Circle() ...
factory function returns instance a class representing the set of points of a plane equidistant from a given point of the plane
- constructors:
- Circle (point1,point2,plane )
- circle of the given plane with 1st given point at center, 2nd point on circumference
- calls: class CircleOnPlane(point1,point2,plane)
- Circle (point1,point2,point3 ,CIRCUM )
- circle passing through the 3 given points
- calls: class CircumCircle(point1,point2,point3)
- Circle (circle,point )
- circle with center at the given point and orthogonal to the given circle
- calls: class OrthoCircle(circle,point)
- Circle (point1,point2,point3 ,EXSCRIBED )
- circle exscribed in the 3 given points' triangle, in the side opp the 1st point
- calls: class ExscribedCircle(point1,point2,point3)
- Circle (point1,point2,point3 )
- circle with first point at center, second on circumference and on the plane of the 3 points
- calls: class CenterCircle(point1,point2,point3)
- Circle (point1,point2,point3 ,INSCRIBED )
- circle inscribed in the 3 given points' triangle
- calls: class InscribedCircle(point1,point2,point3)
- Circle (sphere1,sphere2 )
- circle section determined by the intersection of the 2 given spheres
- calls: class SpheresIntersect(sphere1,sphere2)
- Circle (sphere,plane )
- circle section of the intersection of given sphere and given plane
- calls: class SphereCircle(sphere,plane)
See the source for more information.