pub struct FrameGraph { /* private fields */ }Expand description
Directed calibrated frame graph.
Implementations§
Source§impl FrameGraph
impl FrameGraph
Sourcepub fn insert_edge(&mut self, edge: FrameEdge) -> SyncResult<()>
pub fn insert_edge(&mut self, edge: FrameEdge) -> SyncResult<()>
Inserts or replaces a parent→child edge.
Sourcepub fn lookup(&self, from: &FrameId, to: &FrameId) -> SyncResult<Isometry3<f32>>
pub fn lookup(&self, from: &FrameId, to: &FrameId) -> SyncResult<Isometry3<f32>>
Looks up a transform that maps from coordinates into to coordinates.
Trait Implementations§
Source§impl Clone for FrameGraph
impl Clone for FrameGraph
Source§fn clone(&self) -> FrameGraph
fn clone(&self) -> FrameGraph
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FrameGraph
impl Debug for FrameGraph
Source§impl Default for FrameGraph
impl Default for FrameGraph
Source§fn default() -> FrameGraph
fn default() -> FrameGraph
Returns the “default value” for a type. Read more
Source§impl PartialEq for FrameGraph
impl PartialEq for FrameGraph
Source§fn eq(&self, other: &FrameGraph) -> bool
fn eq(&self, other: &FrameGraph) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FrameGraph
Auto Trait Implementations§
impl Freeze for FrameGraph
impl RefUnwindSafe for FrameGraph
impl Send for FrameGraph
impl Sync for FrameGraph
impl Unpin for FrameGraph
impl UnsafeUnpin for FrameGraph
impl UnwindSafe for FrameGraph
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more