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