[−][src]Struct pbrt::core::geometry::Point3f
Fields
x: Float
y: Float
z: Float
Implementations
impl Point3f
[src]
Trait Implementations
impl<'a, 'b> Add<&'a Point3f> for &'b Point3f
[src]
type Output = Point3f
The resulting type after applying the +
operator.
fn add(self, rhs: &Point3f) -> Self::Output
[src]
impl<'a> Add<&'a Point3f> for Point3f
[src]
type Output = Point3f
The resulting type after applying the +
operator.
fn add(self, rhs: &Point3f) -> Self::Output
[src]
impl<'a, 'b> Add<&'a Vector3f> for &'b Point3f
[src]
type Output = Point3f
The resulting type after applying the +
operator.
fn add(self, rhs: &Vector3f) -> Self::Output
[src]
impl<'a> Add<&'a Vector3f> for Point3f
[src]
type Output = Point3f
The resulting type after applying the +
operator.
fn add(self, rhs: &Vector3f) -> Self::Output
[src]
impl<'a> Add<Point3f> for &'a Point3f
[src]
type Output = Point3f
The resulting type after applying the +
operator.
fn add(self, rhs: Point3f) -> Self::Output
[src]
impl Add<Point3f> for Point3f
[src]
type Output = Point3f
The resulting type after applying the +
operator.
fn add(self, rhs: Point3f) -> Self::Output
[src]
impl<'a> Add<Vector3f> for &'a Point3f
[src]
type Output = Point3f
The resulting type after applying the +
operator.
fn add(self, rhs: Vector3f) -> Self::Output
[src]
impl Add<Vector3f> for Point3f
[src]
type Output = Point3f
The resulting type after applying the +
operator.
fn add(self, rhs: Vector3f) -> Self::Output
[src]
impl AddAssign<Point3f> for Point3f
[src]
fn add_assign(&mut self, rhs: Point3f)
[src]
impl AddAssign<Vector3f> for Point3f
[src]
fn add_assign(&mut self, rhs: Vector3f)
[src]
impl Clone for Point3f
[src]
impl Copy for Point3f
[src]
impl Debug for Point3f
[src]
impl Default for Point3f
[src]
impl<'a> Div<f32> for &'a Point3f
[src]
type Output = Point3f
The resulting type after applying the /
operator.
fn div(self, rhs: Float) -> Self::Output
[src]
impl Div<f32> for Point3f
[src]
type Output = Point3f
The resulting type after applying the /
operator.
fn div(self, rhs: Float) -> Self::Output
[src]
impl DivAssign<f32> for Point3f
[src]
fn div_assign(&mut self, rhs: Float)
[src]
impl From<Point3f> for Vector3f
[src]
impl Index<XYZEnum> for Point3f
[src]
impl IndexMut<XYZEnum> for Point3f
[src]
impl<'a> Mul<f32> for &'a Point3f
[src]
type Output = Point3f
The resulting type after applying the *
operator.
fn mul(self, rhs: Float) -> Self::Output
[src]
impl Mul<f32> for Point3f
[src]
type Output = Point3f
The resulting type after applying the *
operator.
fn mul(self, rhs: Float) -> Self::Output
[src]
impl MulAssign<f32> for Point3f
[src]
fn mul_assign(&mut self, rhs: Float)
[src]
impl<'a, 'b> Sub<&'a Point3f> for &'b Point3f
[src]
type Output = Vector3f
The resulting type after applying the -
operator.
fn sub(self, rhs: &Point3f) -> Self::Output
[src]
impl<'a> Sub<&'a Point3f> for Point3f
[src]
type Output = Vector3f
The resulting type after applying the -
operator.
fn sub(self, rhs: &Point3f) -> Self::Output
[src]
impl<'a, 'b> Sub<&'a Vector3f> for &'b Point3f
[src]
type Output = Point3f
The resulting type after applying the -
operator.
fn sub(self, rhs: &Vector3f) -> Self::Output
[src]
impl<'a> Sub<&'a Vector3f> for Point3f
[src]
type Output = Point3f
The resulting type after applying the -
operator.
fn sub(self, rhs: &Vector3f) -> Self::Output
[src]
impl<'a> Sub<Point3f> for &'a Point3f
[src]
type Output = Vector3f
The resulting type after applying the -
operator.
fn sub(self, rhs: Point3f) -> Self::Output
[src]
impl Sub<Point3f> for Point3f
[src]
type Output = Vector3f
The resulting type after applying the -
operator.
fn sub(self, rhs: Point3f) -> Self::Output
[src]
impl<'a> Sub<Vector3f> for &'a Point3f
[src]
type Output = Point3f
The resulting type after applying the -
operator.
fn sub(self, rhs: Vector3f) -> Self::Output
[src]
impl Sub<Vector3f> for Point3f
[src]
Auto Trait Implementations
impl RefUnwindSafe for Point3f
impl Send for Point3f
impl Sync for Point3f
impl Unpin for Point3f
impl UnwindSafe for Point3f
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,