pub struct Jacobian2x2<T: Float> {
pub m11: T,
pub m12: T,
pub m21: T,
pub m22: T,
}Expand description
2×2 Jacobian matrix for a bilinear quad with nodes [A,B,C,D] at reference coords (-1,-1), (1,-1), (1,1), (-1,1).
Fields§
§m11: TEntry (1,1) of the Jacobian matrix
m12: TEntry (1,2) of the Jacobian matrix
m21: TEntry (2,1) of the Jacobian matrix
m22: TEntry (2,2) of the Jacobian matrix
Implementations§
Trait Implementations§
Source§impl<T: Clone + Float> Clone for Jacobian2x2<T>
impl<T: Clone + Float> Clone for Jacobian2x2<T>
Source§fn clone(&self) -> Jacobian2x2<T>
fn clone(&self) -> Jacobian2x2<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<T: Copy + Float> Copy for Jacobian2x2<T>
impl<T: Float> StructuralPartialEq for Jacobian2x2<T>
Auto Trait Implementations§
impl<T> Freeze for Jacobian2x2<T>where
T: Freeze,
impl<T> RefUnwindSafe for Jacobian2x2<T>where
T: RefUnwindSafe,
impl<T> Send for Jacobian2x2<T>where
T: Send,
impl<T> Sync for Jacobian2x2<T>where
T: Sync,
impl<T> Unpin for Jacobian2x2<T>where
T: Unpin,
impl<T> UnwindSafe for Jacobian2x2<T>where
T: UnwindSafe,
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