Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1006 Bytes

bound.md

File metadata and controls

42 lines (25 loc) · 1006 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.ndarray The position of the front point.
back np.ndarray The position of the back point.
left np.ndarray The position of the left point.
right np.ndarray The position of the right point.
top np.ndarray The position of the top point.
bottom np.ndarray The position of the bottom point.
center np.ndarray The position of the center point.