pub trait IAkTriangleMethods: IAkTriangle {
Show 16 methods
// Provided methods
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>) { ... }
fn set_c_ptr(self, c_ptr: impl Into<IntPtr>) { ... }
fn finalize(self) { ... }
fn dispose(self) { ... }
fn ctor_2(self) { ... }
fn ctor_3(
self,
in_pt0: impl Into<u16>,
in_pt1: impl Into<u16>,
in_pt2: impl Into<u16>,
in_surface_info: impl Into<u16>,
) { ... }
fn set_point0(self, value: impl Into<u16>) { ... }
fn get_point0(self) -> u16 { ... }
fn set_point1(self, value: impl Into<u16>) { ... }
fn get_point1(self) -> u16 { ... }
fn set_point2(self, value: impl Into<u16>) { ... }
fn get_point2(self) -> u16 { ... }
fn set_surface(self, value: impl Into<u16>) { ... }
fn get_surface(self) -> u16 { ... }
fn clear(self) { ... }
fn clone(self, other: impl Into<AkTriangle>) { ... }
}Provided Methods§
Sourcefn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
.ctor(::unity::IntPtr, bool) overload
Sourcefn ctor_3(
self,
in_pt0: impl Into<u16>,
in_pt1: impl Into<u16>,
in_pt2: impl Into<u16>,
in_surface_info: impl Into<u16>,
)
fn ctor_3( self, in_pt0: impl Into<u16>, in_pt1: impl Into<u16>, in_pt2: impl Into<u16>, in_surface_info: impl Into<u16>, )
.ctor(u16, u16, u16, u16) overload
Sourcefn set_point0(self, value: impl Into<u16>)
fn set_point0(self, value: impl Into<u16>)
set_point0(u16) overload
Sourcefn get_point0(self) -> u16
fn get_point0(self) -> u16
get_point0() overload
Sourcefn set_point1(self, value: impl Into<u16>)
fn set_point1(self, value: impl Into<u16>)
set_point1(u16) overload
Sourcefn get_point1(self) -> u16
fn get_point1(self) -> u16
get_point1() overload
Sourcefn set_point2(self, value: impl Into<u16>)
fn set_point2(self, value: impl Into<u16>)
set_point2(u16) overload
Sourcefn get_point2(self) -> u16
fn get_point2(self) -> u16
get_point2() overload
Sourcefn set_surface(self, value: impl Into<u16>)
fn set_surface(self, value: impl Into<u16>)
set_surface(u16) overload
Sourcefn get_surface(self) -> u16
fn get_surface(self) -> u16
get_surface() overload
Sourcefn clone(self, other: impl Into<AkTriangle>)
fn clone(self, other: impl Into<AkTriangle>)
Clone(crate::root::aktriangle::AkTriangle) overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IAkTriangle> IAkTriangleMethods for __T
Available on crate feature
root-aktriangle only.