Struct kittycad_modeling_cmds::each_cmd::MakePlane
source · pub struct MakePlane {
pub origin: Point3d<f64>,
pub x_axis: Point3d<f64>,
pub y_axis: Point3d<f64>,
pub size: f64,
pub clobber: bool,
pub hide: Option<bool>,
}Expand description
Make a new plane
Fields§
§origin: Point3d<f64>Origin of the plane
x_axis: Point3d<f64>What should the plane’s X axis be?
y_axis: Point3d<f64>What should the plane’s Y axis be?
size: f64What should the plane’s span/extent? When rendered visually, this is both the width and height along X and Y axis respectively.
clobber: boolIf true, any existing drawables within the obj will be replaced (the object will be reset)
hide: Option<bool>If true, the plane will be created but hidden initially.
Trait Implementations§
source§impl<'de> Deserialize<'de> for MakePlane
impl<'de> Deserialize<'de> for MakePlane
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
source§impl JsonSchema for MakePlane
impl JsonSchema for MakePlane
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresource§impl<'de> ModelingCmdVariant<'de> for MakePlane
impl<'de> ModelingCmdVariant<'de> for MakePlane
Auto Trait Implementations§
impl RefUnwindSafe for MakePlane
impl Send for MakePlane
impl Sync for MakePlane
impl Unpin for MakePlane
impl UnwindSafe for MakePlane
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