gdnative-core 0.7.0

The Godot game engine's gdnative core bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::Vector3;

/// A 3x3 matrix.
#[repr(C)]
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct Basis {
    pub elements: [Vector3; 3],
}

// TODO methods!