PolygonArtist

class compas_blender.artists.PolygonArtist(*args, **kwargs)[source]

Bases: BlenderArtist, PrimitiveArtist

Artist for drawing polygons in Blender.

Parameters

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

Draw the polygon.

Inherited Methods

build

Build an artist corresponding to the item type.

build_as

Build an artist with the given type.

clear

Clear all objects from the view.

draw_collection

Drawing method for drawing an entire collection of objects.

redraw

Redraw the view.

register

Register an artist type to a data type.