cherry_rs

Struct Ray

source
pub struct Ray { /* private fields */ }
Expand description

A single ray to be traced through an optical system.

§Attributes

  • pos: Position of the ray
  • dir: Direction of the ray (direction cosines)

Implementations§

source§

impl Ray

source

pub fn new(pos: Vec3, dir: Vec3, field_id: usize) -> Result<Self>

source

pub fn intersect(&self, surf: &Surface, max_iter: usize) -> Result<(Vec3, Vec3)>

Finds the intersection point of a ray with a surface and the surface normal at that point.

If no intersection is found, then this function returns an error.

§Arguments
  • surf: Surface to intersect with
  • max_iter: Maximum number of iterations for the Newton-Raphson method
source

pub fn redirect( &mut self, step: &(&'_ Gap, &'_ Surface, Option<&'_ Gap>), norm: Vec3, )

source

pub fn displace(&mut self, pos: Vec3)

Displace a ray to the given location.

source

pub fn transform(&mut self, surf: &Surface)

Transform a ray into the local coordinate system of a surface from the global system.

source

pub fn i_transform(&mut self, surf: &Surface)

Transform a ray from the local coordinate system of a surface into the global system.

source

pub fn terminate(&mut self)

source

pub fn is_terminated(&self) -> bool

source

pub fn fan( n: usize, r: f64, theta: f64, z: f64, phi: f64, radial_offset_x: f64, radial_offset_y: f64, field_id: usize, ) -> Vec<Ray>

Create a fan of uniformly spaced rays in a given z-plane at an angle phi to the z-axis.

The vectors have endpoints at an angle theta with respect to the x-axis and extend from distances -r to r from the point (0, 0, z). The rays are at an angle phi from the z-axis.

§Arguments
  • n: Number of vectors to create
  • r: Radial span of vector endpoints from [-r, r]
  • theta: Angle of vectors with respect to x, radians
  • z: z-coordinate of endpoints
  • phi: Angle of vectors with respect to z, the optics axis, radians
  • radial_offset_x: Offset the radial position of the vectors by this amount in x
  • radial_offset_y: Offset the radial position of the vectors by this amount in y

Trait Implementations§

source§

impl Clone for Ray

source§

fn clone(&self) -> Ray

Returns a copy of the value. Read more
1.6.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Ray

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Ray

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for Ray

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl Freeze for Ray

§

impl RefUnwindSafe for Ray

§

impl Send for Ray

§

impl Sync for Ray

§

impl Unpin for Ray

§

impl UnwindSafe for Ray

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,