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] |
compas.geometry.Plane
) – The plane of the circle.radius (float) – The radius of the circle.
- Attributes
plane (
compas.geometry.Plane
) – The plane of the circle.radius (float) – The radius of the circle.
center (
compas.geometry.Point
) – The center of the circle.normal (
compas.geometry.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
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.
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.