Ellipse
- class compas.geometry.Ellipse(plane, major, minor, **kwargs)[source]
Bases:
Primitive
A ellipse is defined by a plane and a major and minor axis.
- Parameters
plane ([point, vector] |
compas.geometry.Plane
) – The plane of the ellipse.major (float) – The major of the ellipse.
minor (float) – The minor of the ellipse.
- Attributes
plane (
compas.geometry.Plane
) – The plane of the ellipse.major (float) – The major of the ellipse.
minor (float) – The minor of the ellipse.
normal (
compas.geometry.Vector
, read-only) – The normal of the ellipse.center (
compas.geometry.Point
, read-only) – The center of the ellipse.area (float, read-only) – The area of the ellipse.
circumference (float, read-only) – The circumference of the ellipse.
Examples
>>> from compas.geometry import Plane >>> from compas.geometry import Ellipse >>> plane = Plane([0, 0, 0], [0, 0, 1]) >>> ellipse = Ellipse(plane, 2, 1)
Methods
Construct a ellipse from its data representation.
Transform the ellipse.
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.