pub struct MLTSampler {
Show 19 fields pub samples_per_pixel: i64, pub rng: Rng, pub sigma: Float, pub large_step_probability: Float, pub stream_count: i32, pub x: Vec<PrimarySample>, pub current_iteration: i64, pub large_step: bool, pub last_large_step_iteration: i64, pub stream_index: i32, pub sample_index: i32, pub current_pixel: Point2i, pub current_pixel_sample_index: i64, pub samples_1d_array_sizes: Vec<i32>, pub samples_2d_array_sizes: Vec<i32>, pub sample_array_1d: Vec<Vec<Float>>, pub sample_array_2d: Vec<Vec<Point2f>>, pub array_1d_offset: usize, pub array_2d_offset: usize,
}

Fields§

§samples_per_pixel: i64§rng: Rng§sigma: Float§large_step_probability: Float§stream_count: i32§x: Vec<PrimarySample>§current_iteration: i64§large_step: bool§last_large_step_iteration: i64§stream_index: i32§sample_index: i32§current_pixel: Point2i§current_pixel_sample_index: i64§samples_1d_array_sizes: Vec<i32>§samples_2d_array_sizes: Vec<i32>§sample_array_1d: Vec<Vec<Float>>§sample_array_2d: Vec<Vec<Point2f>>§array_1d_offset: usize§array_2d_offset: usize

Implementations§

source§

impl MLTSampler

source

pub fn new( mutations_per_pixel: i64, rng_sequence_index: u64, sigma: Float, large_step_probability: Float, stream_count: i32 ) -> Self

source

pub fn clone_with_seed(&self, _seed: u64) -> Box<Sampler>

source

pub fn start_iteration(&mut self)

source

pub fn accept(&mut self)

source

pub fn reject(&mut self)

source

pub fn start_stream(&mut self, index: i32)

source

pub fn get_next_index(&mut self) -> i32

source

pub fn start_pixel(&mut self, p: Point2i)

source

pub fn get_1d(&mut self) -> Float

source

pub fn get_2d(&mut self) -> Point2f

source

pub fn get_2d_sample(&self, array_idx: usize, idx: usize) -> Point2f

source

pub fn reseed(&mut self, seed: u64)

source

pub fn request_2d_array(&mut self, n: i32)

source

pub fn round_count(&self, count: i32) -> i32

source

pub fn get_2d_array(&mut self, n: i32) -> Option<&[Point2f]>

source

pub fn get_2d_array_idxs(&mut self, n: i32) -> (bool, usize, usize)

source

pub fn start_next_sample(&mut self) -> bool

source

pub fn get_current_pixel(&self) -> Point2i

source

pub fn get_current_sample_number(&self) -> i64

source

pub fn get_samples_per_pixel(&self) -> i64

Trait Implementations§

source§

impl Clone for MLTSampler

source§

fn clone(&self) -> MLTSampler

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

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

Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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> Pointable for T

source§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.