Circle
- class compas.geometry.Circle(plane, radius, **kwargs)[source]
- Bases: - Primitive- A circle is defined by a plane and a radius. - Parameters
- plane ([point, vector] | - Plane) – The plane of the circle.
- radius (float) – The radius of the circle. 
 
- Attributes
- plane ( - Plane) – The plane of the circle.
- radius (float) – The radius of the circle. 
- center ( - Point) – The center of the circle.
- normal ( - Vector, read-only) – The normal of the circle.
- diameter (float, read-only) – The diameter of the circle. 
- area (float, read-only) – The area of the circle. 
- circumference (float, read-only) – The circumference of the circle. 
 
 - Examples - >>> from compas.geometry import Plane >>> from compas.geometry import Circle >>> plane = Plane([0, 0, 0], [0, 0, 1]) >>> circle = Circle(plane, 5)- Methods - Construct a circle from its data representation. - Transform the circle. - Inherited Methods - Converts the instance to a string. - Make an independent copy of the data object. - Construct an object from serialized data contained in a JSON file. - Construct an object from serialized data contained in a JSON string. - Compute a hash of the data for comparison during version control using the sha256 algorithm. - Convert an object to its native data representation. - Serialize the data representation of an object to a JSON file. - Serialize the data representation of an object to a JSON string. - Returns a transformed copy of this geometry. - Validate the object's data against its data schema. - Validate the object's data against its json schema.