Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 992 Bytes

File metadata and controls

42 lines (25 loc) · 992 Bytes

Bound

from tdw.object_data.bound import Bound

Bounds data for a single object.


Fields

  • front The position of the front point.

  • back The position of the back point.

  • left The position of the left point.

  • right The position of the right point.

  • top The position of the top point.

  • bottom The position of the bottom point.

  • center The position of the center point.


Functions

__init__

Bound(front, back, left, right, top, bottom, center)

Parameter Type Default Description
front np.array The position of the front point.
back np.array The position of the back point.
left np.array The position of the left point.
right np.array The position of the right point.
top np.array The position of the top point.
bottom np.array The position of the bottom point.
center np.array The position of the center point.