pub struct Circle<S: Scalar> {
pub center: Vector3<S>,
pub normal: Vector3<S>,
pub radius: S,
}Expand description
A circle: around center, in the plane normal to the unit vector
normal, of radius.
Fields§
§center: Vector3<S>§normal: Vector3<S>§radius: SImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for Circle<S>where
S: Freeze,
impl<S> RefUnwindSafe for Circle<S>where
S: RefUnwindSafe,
impl<S> Send for Circle<S>
impl<S> Sync for Circle<S>
impl<S> Unpin for Circle<S>where
S: Unpin,
impl<S> UnsafeUnpin for Circle<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for Circle<S>where
S: 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