LineArtist

class compas_blender.artists.LineArtist(item, **kwargs)[source]

Bases: BlenderArtist, PrimitiveArtist

Artist for drawing lines in Blender.

Parameters
  • line (Line) – A COMPAS line.

  • collection (str | 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 BlenderArtist and PrimitiveArtist.

Examples

Use the Blender artist explicitly.

from compas.geometry import Line
from compas_blender.artists import LineArtist

line = Line([0, 0, 0], [1, 1, 1])

artist = LineArtist(line)
artist.draw()

Or, use the artist through the plugin mechanism.

from compas.geometry import Line
from compas.artists import Artist

line = Line([0, 0, 0], [1, 1, 1])

artist = Artist(line)
artist.draw()

Methods

draw

Draw the line.

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.