Trait bevy_internal::gizmos::primitives::dim3::GizmoPrimitive3d
source · pub trait GizmoPrimitive3d<P>where
P: Primitive3d,{
type Output<'a>
where Self: 'a;
// Required method
fn primitive_3d(
&mut self,
primitive: P,
position: Vec3,
rotation: Quat,
color: Color
) -> Self::Output<'_>;
}
Expand description
A trait for rendering 3D geometric primitives (P
) with Gizmos
.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.