VectorArtist
- class compas_blender.artists.VectorArtist(item, **kwargs)[source]
Bases:
BlenderArtist
,PrimitiveArtist
Artist for drawing vectors in Blender.
- Parameters
primitive (
Vector
) – A COMPAS vector.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
andPrimitiveArtist
.
Examples
Use the Blender artist explicitly.
from compas.geometry import Vector from compas_blender.artists import VectorArtist vector = Vector(1, 1, 1) artist = VectorArtist(vector) artist.draw()
Or, use the artist through the plugin mechanism.
from compas.geometry import Vector from compas.artists import Artist vector = Vector(1, 1, 1) artist = Artist(vector) artist.draw()
Methods
Draw the vector.
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.