pub struct ImageBoxProcedural {
pub id: String,
pub parameters: HashMap<String, Scalar>,
pub images: Vec<String>,
pub mesh: ImageBoxProceduralMesh,
pub vertex_mapping: CoordsMappingScaling,
}
Fields§
§id: String
§parameters: HashMap<String, Scalar>
§images: Vec<String>
§mesh: ImageBoxProceduralMesh
§vertex_mapping: CoordsMappingScaling
Implementations§
Source§impl ImageBoxProcedural
impl ImageBoxProcedural
pub fn new(id: impl ToString) -> Self
pub fn param(self, id: impl ToString, value: Scalar) -> Self
pub fn image(self, id: impl ToString) -> Self
pub fn mesh(self, mesh: ImageBoxProceduralMesh) -> Self
pub fn triangle(self, vertices: [ImageBoxProceduralVertex; 3]) -> Self
pub fn quad(self, vertices: [ImageBoxProceduralVertex; 4]) -> Self
pub fn extend( self, vertices: impl IntoIterator<Item = ImageBoxProceduralVertex>, triangles: impl IntoIterator<Item = [u32; 3]>, ) -> Self
pub fn vertex_mapping(self, value: CoordsMappingScaling) -> Self
Trait Implementations§
Source§impl Clone for ImageBoxProcedural
impl Clone for ImageBoxProcedural
Source§fn clone(&self) -> ImageBoxProcedural
fn clone(&self) -> ImageBoxProcedural
Returns a duplicate of the value. Read more
1.0.0 · 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 ImageBoxProcedural
impl Debug for ImageBoxProcedural
Source§impl Default for ImageBoxProcedural
impl Default for ImageBoxProcedural
Source§fn default() -> ImageBoxProcedural
fn default() -> ImageBoxProcedural
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImageBoxProcedural
impl<'de> Deserialize<'de> for ImageBoxProcedural
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ImageBoxProcedural
impl !RefUnwindSafe for ImageBoxProcedural
impl Send for ImageBoxProcedural
impl Sync for ImageBoxProcedural
impl Unpin for ImageBoxProcedural
impl !UnwindSafe for ImageBoxProcedural
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