Skip to main content

IAkTriangleMethods

Trait IAkTriangleMethods 

Source
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§

Source

fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)

.ctor(::unity::IntPtr, bool) overload

Source

fn set_c_ptr(self, c_ptr: impl Into<IntPtr>)

setCPtr(::unity::IntPtr) overload

Source

fn finalize(self)

Finalize() overload

Source

fn dispose(self)

Dispose() overload

Source

fn ctor_2(self)

.ctor() overload

Source

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

Source

fn set_point0(self, value: impl Into<u16>)

set_point0(u16) overload

Source

fn get_point0(self) -> u16

get_point0() overload

Source

fn set_point1(self, value: impl Into<u16>)

set_point1(u16) overload

Source

fn get_point1(self) -> u16

get_point1() overload

Source

fn set_point2(self, value: impl Into<u16>)

set_point2(u16) overload

Source

fn get_point2(self) -> u16

get_point2() overload

Source

fn set_surface(self, value: impl Into<u16>)

set_surface(u16) overload

Source

fn get_surface(self) -> u16

get_surface() overload

Source

fn clear(self)

Clear() overload

Source

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§

Source§

impl<__T: IAkTriangle> IAkTriangleMethods for __T

Available on crate feature root-aktriangle only.