gdnative_geom 0.6.1

(DEPRECATED) Math primitives for the Godot game engine's gdnative bindings (See the gdnative crate).
Documentation

use Vector3;

/// Axis-aligned bounding box.
#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct Aabb {
    pub position: Vector3,
    pub size: Vector3,
}