VectorArtist

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

Bases: BlenderArtist, PrimitiveArtist

Artist for drawing vectors in Blender.

Parameters

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

Draw the vector.

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.