Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 378 Bytes

helpers.get_bounding_box_point.rst

File metadata and controls

24 lines (16 loc) · 378 Bytes

get_bounding_box_point

k3d.helpers.get_bounding_box_point

Examples

import k3d
import numpy as np

pos = np.array([1, 2, 3])

box_point = k3d.helpers.get_bounding_box_point(pos)

"""
array([1, 1, 2, 2, 3, 3])
"""