BoundingBox3D

pydantic model BoundingBox3D[source]

Contains the 3D coordinates within which a data object is contained.

Fields:
field zmin: float [Required]

Minimum z-coordinate. For regular surfaces this field represents the “minimum surface value and it will be absent if all values are undefined.

Constraints:
  • allow_inf_nan = False

field zmax: float [Required]

Maximum z-coordinate. For regular surfaces this field represents the maximum surface value and it will be absent if all values are undefined.

Constraints:
  • allow_inf_nan = False

field xmin: float [Required]

Minimum x-coordinate

Constraints:
  • allow_inf_nan = False

field xmax: float [Required]

Maximum x-coordinate

Constraints:
  • allow_inf_nan = False

field ymin: float [Required]

Minimum y-coordinate

Constraints:
  • allow_inf_nan = False

field ymax: float [Required]

Maximum y-coordinate

Constraints:
  • allow_inf_nan = False