BoundingVolume.from_box
- classmethod BoundingVolume.from_box(box)[source]
Create a
BoundingVolume
from acompas.geometry.Box
.- Parameters:
- box
compas.geometry.Box
Box to define
BoundingVolume
with.
- box
- Returns:
Examples
>>> from compas.geometry import Frame >>> from compas.geometry import Box >>> from compas_fab.robots import BoundingVolume >>> box = Box(1., 1., 1.) >>> bv = BoundingVolume.from_box(box) >>> bv.type 1