#[repr(C)]pub struct b3PlaneSolverResult {
pub delta: b3Vec3,
pub iterationCount: c_int,
}Expand description
Result returned by b3SolvePlanes.
Fields§
§delta: b3Vec3The final relative translation.
iterationCount: c_intThe number of iterations used by the plane solver. For diagnostics.
Trait Implementations§
Source§impl Clone for b3PlaneSolverResult
impl Clone for b3PlaneSolverResult
Source§fn clone(&self) -> b3PlaneSolverResult
fn clone(&self) -> b3PlaneSolverResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for b3PlaneSolverResult
Auto Trait Implementations§
impl Freeze for b3PlaneSolverResult
impl RefUnwindSafe for b3PlaneSolverResult
impl Send for b3PlaneSolverResult
impl Sync for b3PlaneSolverResult
impl Unpin for b3PlaneSolverResult
impl UnsafeUnpin for b3PlaneSolverResult
impl UnwindSafe for b3PlaneSolverResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more