FrameArtist

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

Bases: compas_blender.artists.artist.BlenderArtist, compas.artists.primitiveartist.PrimitiveArtist

Artist for drawing frames.

Parameters
  • frame (compas.geometry.Frame) – A COMPAS frame.

  • collection (str or bpy.types.Collection) – The name of the collection the object belongs to.

  • scale (float, optional) – Scale factor that controls the length of the axes.

Attributes
  • frame (compas.geometry.Frame) – A COMPAS frame.

  • collection (str) – The name of the frame’s collection.

  • scale (float) – Scale factor that controls the length of the axes. Default is 1.0.

  • color_origin (tuple of 3 int between 0 and 255) – Default is (0, 0, 0).

  • color_xaxis (tuple of 3 int between 0 and 255) – Default is (255, 0, 0).

  • color_yaxis (tuple of 3 int between 0 and 255) – Default is (0, 255, 0).

  • color_zaxis (tuple of 3 int between 0 and 255) – Default is (0, 0, 255).

Inherited Attributes

AVAILABLE_CONTEXTS

CONTEXT

ITEM_ARTIST

collection

color

default_color

primitive

Methods

draw

Draw the frame.

draw_axes

Draw the axes of the frame.

draw_origin

Draw the origin of the frame.

Inherited Methods

build

Build an artist corresponding to the item type.

build_as

clear

draw_collection

redraw

register