Skip to main content

HelixMini

Struct HelixMini 

Source
pub struct HelixMini { /* private fields */ }
Expand description

Stateful mini helix for embedding in a fixed character rectangle.

Implementations§

Source§

impl HelixMini

Source

pub fn new(seed: u64) -> Self

Source

pub fn tick(&mut self, speed: f32)

Advance by one nominal helix frame (~33 ms at speed 1.0), matching main.rs timing.

Source

pub fn tick_elapsed(&mut self, speed: f32, elapsed: Duration)

Advance using wall-clock time between draws so motion matches the CLI when the host UI redraws slowly. Same model as main.rs: per frame theta += 0.16 * speed, tick += speed.ceil(), frame sleep 33ms / speed.

Source

pub fn render_grid(&self, width: usize, height: usize, scale: f32) -> HelixGrid

grid[y][x] = optional (base char, rgb). Unoccupied cells are None.

Auto Trait Implementations§

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> 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, 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.