Source code for ladybug_display.geometry3d.cylinder

"""A cylinder that can be displayed in 3D space."""
from ladybug_geometry.geometry3d.cylinder import Cylinder
from ladybug.color import Color

from ._base import _SingleColorModeBase3D


[docs]class DisplayCylinder(_SingleColorModeBase3D): """A cylinder in 3D space with display properties. Args: geometry: A ladybug-geometry Cylinder. color: A ladybug Color object. If None, a default black color will be used. (Default: None). display_mode: Text to indicate the display mode (surface, wireframe, etc.). Choose from the following. (Default: Surface). * Surface * SurfaceWithEdges * Wireframe * Points Properties: * geometry * color * display_mode * center * axis * height * radius * area * volume * user_data """ __slots__ = () def __init__(self, geometry, color=None, display_mode='Surface'): """Initialize base with shade object.""" assert isinstance(geometry, Cylinder), '\ Expected ladybug_geometry Cylinder. Got {}'.format(type(geometry)) _SingleColorModeBase3D.__init__(self, geometry, color, display_mode)
[docs] @classmethod def from_dict(cls, data): """Initialize a DisplayCylinder from a dictionary. Args: data: A dictionary representation of an DisplayCylinder object. """ assert data['type'] == 'DisplayCylinder', \ 'Expected DisplayCylinder dictionary. Got {}.'.format(data['type']) color = Color.from_dict(data['color']) if 'color' in data and data['color'] \ is not None else None d_mode = data['display_mode'] if 'display_mode' in data and \ data['display_mode'] is not None else 'Surface' geo = cls(Cylinder.from_dict(data['geometry']), color, d_mode) if 'user_data' in data and data['user_data'] is not None: geo.user_data = data['user_data'] return geo
@property def center(self): """Get a Point3D for the center of the bottom of the cylinder.""" return self._geometry.center @property def axis(self): """Get a Vector3D for the axis of the cylinder.""" return self._geometry.axis @property def height(self): """Get a number for the height of the cylinder.""" return self._geometry.height @property def radius(self): """Get the radius of the cylinder.""" return self._geometry.radius @property def area(self): """Get the surface area of the cylinder.""" return self._geometry.area @property def volume(self): """Get the volume of the cylinder.""" return self._geometry.volume
[docs] def to_dict(self): """Return DisplayCylinder as a dictionary.""" base = {'type': 'DisplayCylinder'} base['geometry'] = self._geometry.to_dict() base['color'] = self.color.to_dict() base['display_mode'] = self.display_mode if self.user_data is not None: base['user_data'] = self.user_data return base
def __copy__(self): new_g = DisplayCylinder(self.geometry, self.color, self.display_mode) new_g._user_data = None if self.user_data is None else self.user_data.copy() return new_g def __repr__(self): return 'DisplayCylinder: {}'.format(self.geometry)