wisdom
Loading...
Searching...
No Matches

Detailed Description

Specification


C version:

// Provided by Wisdom 0.7.0.
typedef struct WisBox {
uint32_t x;
uint32_t y;
uint32_t z;
uint32_t width;
uint32_t height;
uint32_t depth;

C++ version:

namespace wis{
// Provided by Wisdom 0.7.0.
struct Box {
std::uint32_t x;
std::uint32_t y;
std::uint32_t z;
std::uint32_t width;
std::uint32_t height;
std::uint32_t depth;
};
}

Members


  • x defines left corner x coordinate.
  • y describes top corner y coordinate.
  • z specifies front corner z coordinate. Used only for 3D textures.
  • width defines width of the box.
  • height describes height of the box.
  • depth describes depth of the box. Used only for 3D textures.

Description


See Also


See also
Structs: WisTextureRegion