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§
Sourcetype SurfaceSpace
type SurfaceSpace
Surface space coordinates representation.
Required Methods§
Sourcefn estimate_surface_space(&self, event_space: EventSpace) -> Self::SurfaceSpace
fn estimate_surface_space(&self, event_space: EventSpace) -> Self::SurfaceSpace
Recalculate from the event space coordinates into the surface space coordinates.