SphereArtist

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

Bases: BlenderArtist, ShapeArtist

Artist for drawing sphere shapes in Blender.

Parameters

Examples

Use the Blender artist explicitly.

from compas.geometry import Sphere
from compas_blender.artists import SphereArtist

sphere = Sphere([0, 0, 0], 1)

artist = SphereArtist(sphere)
artist.draw()

Or, use the artist through the plugin mechanism.

from compas.geometry import Sphere
from compas.artists import Artist

sphere = Sphere([0, 0, 0], 1)

artist = Artist(sphere)
artist.draw()

Methods

draw

Draw the sphere associated with the artist.

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.