ConeArtist
- class compas_blender.artists.ConeArtist(item, **kwargs)[source]
Bases:
BlenderArtist
,ShapeArtist
Artist for drawing cone shapes in Blender.
- Parameters
cone (
Cone
) – A COMPAS cone.collection (str | bpy.types.Collection) – The Blender scene collection the object(s) created by this artist belong to.
**kwargs (dict, optional) – Additional keyword arguments. For more info, see
BlenderArtist
andShapeArtist
.
Examples
Use the Blender artist explicitly.
from compas.geometry import Plane, Circle, Cone from compas_blender.artists import ConeArtist cone = Cone(Circle(Plane([0, 0, 0], [0, 0, 1]), 0.3), 1.0) artist = ConeArtist(cone) artist.draw()
Or, use the artist through the plugin mechanism.
from compas.geometry import Plane, Circle, Cone from compas.artists import Artist cone = Cone(Circle(Plane([0, 0, 0], [0, 0, 1]), 0.3), 1.0) artist = Artist(cone) artist.draw()
Methods
Draw the cone associated with the artist.
Inherited Methods
Build an artist corresponding to the item type.
Build an artist with the given type.
Clear all objects from the view.
Drawing method for drawing an entire collection of objects.
Redraw the view.
Register an artist type to a data type.