Trait EventContext

Source
pub trait EventContext<EventSpace> {
    type SurfaceSpace;

    // Required method
    fn estimate_surface_space(
        &self,
        event_space: EventSpace,
    ) -> Self::SurfaceSpace;
}
Expand description

Event context generalization.

Required Associated Types§

Source

type SurfaceSpace

Surface space coordinates representation.

Required Methods§

Source

fn estimate_surface_space(&self, event_space: EventSpace) -> Self::SurfaceSpace

Recalculate from the event space coordinates into the surface space coordinates.

Implementors§