PolylineArtist

class compas_plotters.artists.PolylineArtist(item, **kwargs)[source]

Bases: PlotterArtist, PrimitiveArtist

Artist for COMPAS polylines.

Parameters
  • polyline (Polyline) – A COMPAS polyline.

  • linewidth (float, optional) – Width of the polyline edge lines.

  • linestyle ({‘solid’, ‘dotted’, ‘dashed’, ‘dashdot’}, optional) – Style of the line.

  • facecolor (tuple[float, float, float], optional) – Color of the interior face of the polyline.

  • edgecolor (tuple[float, float, float], optional) – Color of the boundary of the polyline.

  • zorder (int, optional) – Stacking order of the polyline on the canvas.

  • **kwargs (dict, optional) – Additional keyword arguments. See PlotterArtist and PrimitiveArtist for more info.

Attributes

polyline (Polyline) – The line associated with the artist.

Methods

draw

Draw the polyline.

redraw

Update the polyline using the current geometry and visualization settings.

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.

register

Register an artist type to a data type.

update_data

Update the data limits of the plotting axes using the visualization data.

viewbox

Compute the bounds of the current view.