PointArtist
- class compas_blender.artists.PointArtist(*args, **kwargs)[source]
Bases:
BlenderArtist
,PrimitiveArtist
Artist for drawing points in Blender.
- Parameters
point (
compas.geometry.Point
) – A COMPAS point.collection (str or 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
compas_blender.artists.BlenderArtist
andcompas.artists.PrimitiveArtist
.
Examples
Use the Blender artist explicitly.
from compas.geometry import Point from compas_blender.artists import PointArtist point = Point(0, 0, 0) artist = PointArtist(point) artist.draw()
Or, use the artist through the plugin mechanism.
from compas.geometry import Point from compas.artists import Artist point = Point(0, 0, 0) artist = Artist(point) artist.draw()
Methods
Draw the point.
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.