Source code for compas_ghpython.artists._primitiveartist
from __future__ import print_function
from __future__ import absolute_import
from __future__ import division
from compas_ghpython.artists._artist import BaseArtist
__all__ = ["PrimitiveArtist"]
[docs]class PrimitiveArtist(BaseArtist):
"""Base class for artists for geometry primitives.
Parameters
----------
primitive: :class:`compas.geometry.Primitive`
The instance of the primitive.
color : 3-tuple, optional
The RGB color specification of the object.
Attributes
----------
primitive: :class:`compas.geometry.Primitive`
A reference to the geometry of the primitive.
name : str
The name of the primitive.
color : tuple
The RGB components of the base color of the primitive.
"""
[docs] def __init__(self, primitive, color=None):
super(PrimitiveArtist, self).__init__()
self.primitive = primitive
self.color = color
@property
def name(self):
"""str : Reference to the name of the primitive."""
return self.primitive.name
@name.setter
def name(self, name):
self.primitive.name = name
# ==============================================================================
# Main
# ==============================================================================
if __name__ == '__main__':
pass