PolygonArtist
- class compas_blender.artists.PolygonArtist(*args, **kwargs)[source]
Bases:
BlenderArtist
,PrimitiveArtist
Artist for drawing polygons in Blender.
- Parameters
polygon (
compas.geometry.Polygon
) – A COMPAS polygon.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
from compas.geometry import Polygon from compas_blender.artists import PolygonArtist polygon = Polygon.from_sides_and_radius_xy(5, 1) artist = PolygonArtist(polygon) artist.draw()
from compas.geometry import Polygon from compas.artists import Artist polygon = Polygon.from_sides_and_radius_xy(5, 1) artist = Artist(polygon) artist.draw()
Methods
Draw the polygon.
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.