pub trait IRotationLimitPolygonal_ReachConeMethods: IRotationLimitPolygonal_ReachCone {
// Provided methods
fn get_o(self) -> Vector3 { ... }
fn get_a(self) -> Vector3 { ... }
fn get_b(self) -> Vector3 { ... }
fn get_c(self) -> Vector3 { ... }
fn ctor(
self,
o: impl Into<Vector3>,
a: impl Into<Vector3>,
b: impl Into<Vector3>,
c: impl Into<Vector3>,
) { ... }
fn get_is_valid(self) -> bool { ... }
fn calculate(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
o: impl Into<Vector3>,
a: impl Into<Vector3>,
b: impl Into<Vector3>,
c: impl Into<Vector3>,
)
fn ctor( self, o: impl Into<Vector3>, a: impl Into<Vector3>, b: impl Into<Vector3>, c: impl Into<Vector3>, )
.ctor(crate::unity_engine::vector3::Vector3, crate::unity_engine::vector3::Vector3, crate::unity_engine::vector3::Vector3, crate::unity_engine::vector3::Vector3) overload
Sourcefn get_is_valid(self) -> bool
fn get_is_valid(self) -> bool
get_isValid() 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: IRotationLimitPolygonal_ReachCone> IRotationLimitPolygonal_ReachConeMethods for __T
Available on crate feature
root_motion-final_ik-rotationlimitpolygonal only.