Improvements to axis handling (#6530)
Signed-off-by: Nick Cameron <nrc@ncameron.org>
This commit is contained in:
@ -308,16 +308,14 @@ impl Plane {
|
||||
x: 1.0,
|
||||
y: 0.0,
|
||||
z: 0.0,
|
||||
// TODO axes must be normalized, so maybe these should all be count
|
||||
// rather than mm?
|
||||
units: UnitLen::Mm,
|
||||
units: _,
|
||||
},
|
||||
y_axis:
|
||||
Point3d {
|
||||
x: 0.0,
|
||||
y: 1.0,
|
||||
z: 0.0,
|
||||
units: UnitLen::Mm,
|
||||
units: _,
|
||||
},
|
||||
..
|
||||
} => return PlaneData::XY,
|
||||
@ -334,14 +332,14 @@ impl Plane {
|
||||
x: -1.0,
|
||||
y: 0.0,
|
||||
z: 0.0,
|
||||
units: UnitLen::Mm,
|
||||
units: _,
|
||||
},
|
||||
y_axis:
|
||||
Point3d {
|
||||
x: 0.0,
|
||||
y: 1.0,
|
||||
z: 0.0,
|
||||
units: UnitLen::Mm,
|
||||
units: _,
|
||||
},
|
||||
..
|
||||
} => return PlaneData::NegXY,
|
||||
@ -358,14 +356,14 @@ impl Plane {
|
||||
x: 1.0,
|
||||
y: 0.0,
|
||||
z: 0.0,
|
||||
units: UnitLen::Mm,
|
||||
units: _,
|
||||
},
|
||||
y_axis:
|
||||
Point3d {
|
||||
x: 0.0,
|
||||
y: 0.0,
|
||||
z: 1.0,
|
||||
units: UnitLen::Mm,
|
||||
units: _,
|
||||
},
|
||||
..
|
||||
} => return PlaneData::XZ,
|
||||
@ -382,14 +380,14 @@ impl Plane {
|
||||
x: -1.0,
|
||||
y: 0.0,
|
||||
z: 0.0,
|
||||
units: UnitLen::Mm,
|
||||
units: _,
|
||||
},
|
||||
y_axis:
|
||||
Point3d {
|
||||
x: 0.0,
|
||||
y: 0.0,
|
||||
z: 1.0,
|
||||
units: UnitLen::Mm,
|
||||
units: _,
|
||||
},
|
||||
..
|
||||
} => return PlaneData::NegXZ,
|
||||
@ -406,14 +404,14 @@ impl Plane {
|
||||
x: 0.0,
|
||||
y: 1.0,
|
||||
z: 0.0,
|
||||
units: UnitLen::Mm,
|
||||
units: _,
|
||||
},
|
||||
y_axis:
|
||||
Point3d {
|
||||
x: 0.0,
|
||||
y: 0.0,
|
||||
z: 1.0,
|
||||
units: UnitLen::Mm,
|
||||
units: _,
|
||||
},
|
||||
..
|
||||
} => return PlaneData::YZ,
|
||||
@ -430,14 +428,14 @@ impl Plane {
|
||||
x: 0.0,
|
||||
y: -1.0,
|
||||
z: 0.0,
|
||||
units: UnitLen::Mm,
|
||||
units: _,
|
||||
},
|
||||
y_axis:
|
||||
Point3d {
|
||||
x: 0.0,
|
||||
y: 0.0,
|
||||
z: 1.0,
|
||||
units: UnitLen::Mm,
|
||||
units: _,
|
||||
},
|
||||
..
|
||||
} => return PlaneData::NegYZ,
|
||||
@ -460,8 +458,8 @@ impl Plane {
|
||||
#[cfg(feature = "artifact-graph")]
|
||||
artifact_id: id.into(),
|
||||
origin: Point3d::new(0.0, 0.0, 0.0, UnitLen::Mm),
|
||||
x_axis: Point3d::new(1.0, 0.0, 0.0, UnitLen::Mm),
|
||||
y_axis: Point3d::new(0.0, 1.0, 0.0, UnitLen::Mm),
|
||||
x_axis: Point3d::new(1.0, 0.0, 0.0, UnitLen::Unknown),
|
||||
y_axis: Point3d::new(0.0, 1.0, 0.0, UnitLen::Unknown),
|
||||
value: PlaneType::XY,
|
||||
meta: vec![],
|
||||
},
|
||||
@ -470,8 +468,8 @@ impl Plane {
|
||||
#[cfg(feature = "artifact-graph")]
|
||||
artifact_id: id.into(),
|
||||
origin: Point3d::new(0.0, 0.0, 0.0, UnitLen::Mm),
|
||||
x_axis: Point3d::new(-1.0, 0.0, 0.0, UnitLen::Mm),
|
||||
y_axis: Point3d::new(0.0, 1.0, 0.0, UnitLen::Mm),
|
||||
x_axis: Point3d::new(-1.0, 0.0, 0.0, UnitLen::Unknown),
|
||||
y_axis: Point3d::new(0.0, 1.0, 0.0, UnitLen::Unknown),
|
||||
value: PlaneType::XY,
|
||||
meta: vec![],
|
||||
},
|
||||
@ -480,8 +478,8 @@ impl Plane {
|
||||
#[cfg(feature = "artifact-graph")]
|
||||
artifact_id: id.into(),
|
||||
origin: Point3d::new(0.0, 0.0, 0.0, UnitLen::Mm),
|
||||
x_axis: Point3d::new(1.0, 0.0, 0.0, UnitLen::Mm),
|
||||
y_axis: Point3d::new(0.0, 0.0, 1.0, UnitLen::Mm),
|
||||
x_axis: Point3d::new(1.0, 0.0, 0.0, UnitLen::Unknown),
|
||||
y_axis: Point3d::new(0.0, 0.0, 1.0, UnitLen::Unknown),
|
||||
value: PlaneType::XZ,
|
||||
meta: vec![],
|
||||
},
|
||||
@ -490,8 +488,8 @@ impl Plane {
|
||||
#[cfg(feature = "artifact-graph")]
|
||||
artifact_id: id.into(),
|
||||
origin: Point3d::new(0.0, 0.0, 0.0, UnitLen::Mm),
|
||||
x_axis: Point3d::new(-1.0, 0.0, 0.0, UnitLen::Mm),
|
||||
y_axis: Point3d::new(0.0, 0.0, 1.0, UnitLen::Mm),
|
||||
x_axis: Point3d::new(-1.0, 0.0, 0.0, UnitLen::Unknown),
|
||||
y_axis: Point3d::new(0.0, 0.0, 1.0, UnitLen::Unknown),
|
||||
value: PlaneType::XZ,
|
||||
meta: vec![],
|
||||
},
|
||||
@ -500,8 +498,8 @@ impl Plane {
|
||||
#[cfg(feature = "artifact-graph")]
|
||||
artifact_id: id.into(),
|
||||
origin: Point3d::new(0.0, 0.0, 0.0, UnitLen::Mm),
|
||||
x_axis: Point3d::new(0.0, 1.0, 0.0, UnitLen::Mm),
|
||||
y_axis: Point3d::new(0.0, 0.0, 1.0, UnitLen::Mm),
|
||||
x_axis: Point3d::new(0.0, 1.0, 0.0, UnitLen::Unknown),
|
||||
y_axis: Point3d::new(0.0, 0.0, 1.0, UnitLen::Unknown),
|
||||
value: PlaneType::YZ,
|
||||
meta: vec![],
|
||||
},
|
||||
@ -510,8 +508,8 @@ impl Plane {
|
||||
#[cfg(feature = "artifact-graph")]
|
||||
artifact_id: id.into(),
|
||||
origin: Point3d::new(0.0, 0.0, 0.0, UnitLen::Mm),
|
||||
x_axis: Point3d::new(0.0, -1.0, 0.0, UnitLen::Mm),
|
||||
y_axis: Point3d::new(0.0, 0.0, 1.0, UnitLen::Mm),
|
||||
x_axis: Point3d::new(0.0, -1.0, 0.0, UnitLen::Unknown),
|
||||
y_axis: Point3d::new(0.0, 0.0, 1.0, UnitLen::Unknown),
|
||||
value: PlaneType::YZ,
|
||||
meta: vec![],
|
||||
},
|
||||
@ -631,7 +629,7 @@ impl Sketch {
|
||||
adjust_camera: false,
|
||||
planar_normal: if let SketchSurface::Plane(plane) = &self.on {
|
||||
// We pass in the normal for the plane here.
|
||||
let normal = plane.x_axis.cross(&plane.y_axis);
|
||||
let normal = plane.x_axis.axes_cross_product(&plane.y_axis);
|
||||
Some(normal.into())
|
||||
} else {
|
||||
None
|
||||
@ -918,24 +916,26 @@ impl Point3d {
|
||||
self.x == 0.0 && self.y == 0.0 && self.z == 0.0
|
||||
}
|
||||
|
||||
/// Calculate the cross product of this vector with another
|
||||
pub fn cross(&self, other: &Self) -> Self {
|
||||
let other = if other.units == self.units {
|
||||
other
|
||||
} else {
|
||||
&Point3d {
|
||||
x: self.units.adjust_to(other.x, self.units).0,
|
||||
y: self.units.adjust_to(other.y, self.units).0,
|
||||
z: self.units.adjust_to(other.z, self.units).0,
|
||||
units: self.units,
|
||||
}
|
||||
};
|
||||
|
||||
/// Calculate the cross product of this vector with another.
|
||||
///
|
||||
/// This should only be applied to axes or other vectors which represent only a direction (and
|
||||
/// no magnitude) since units are ignored.
|
||||
pub fn axes_cross_product(&self, other: &Self) -> Self {
|
||||
Self {
|
||||
x: self.y * other.z - self.z * other.y,
|
||||
y: self.z * other.x - self.x * other.z,
|
||||
z: self.x * other.y - self.y * other.x,
|
||||
units: self.units,
|
||||
units: UnitLen::Unknown,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn normalize(&self) -> Self {
|
||||
let len = f64::sqrt(self.x * self.x + self.y * self.y + self.z * self.z);
|
||||
Point3d {
|
||||
x: self.x / len,
|
||||
y: self.y / len,
|
||||
z: self.z / len,
|
||||
units: UnitLen::Unknown,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1056,14 +1056,21 @@ impl KclValue {
|
||||
.and_then(Point3d::from_kcl_val)
|
||||
.ok_or(CoercionError::from(self))?;
|
||||
|
||||
if value.get("zAxis").is_some() {
|
||||
exec_state.warn(CompilationError::err(
|
||||
self.into(),
|
||||
"Object with a zAxis field is being coerced into a plane, but the zAxis is ignored.",
|
||||
));
|
||||
}
|
||||
|
||||
let id = exec_state.mod_local.id_generator.next_uuid();
|
||||
let plane = Plane {
|
||||
id,
|
||||
#[cfg(feature = "artifact-graph")]
|
||||
artifact_id: id.into(),
|
||||
origin,
|
||||
x_axis,
|
||||
y_axis,
|
||||
x_axis: x_axis.normalize(),
|
||||
y_axis: y_axis.normalize(),
|
||||
value: super::PlaneType::Uninit,
|
||||
meta: meta.clone(),
|
||||
};
|
||||
|
||||
@ -29,7 +29,7 @@ async fn inner_offset_plane(
|
||||
// standard planes themselves.
|
||||
plane.value = PlaneType::Custom;
|
||||
|
||||
let normal = plane.x_axis.cross(&plane.y_axis);
|
||||
let normal = plane.x_axis.axes_cross_product(&plane.y_axis);
|
||||
plane.origin += normal * offset.to_length_units(plane.origin.units);
|
||||
make_offset_plane_in_engine(&plane, exec_state, args).await?;
|
||||
|
||||
|
||||
@ -1368,7 +1368,7 @@ pub(crate) async fn inner_start_profile(
|
||||
adjust_camera: false,
|
||||
planar_normal: if let SketchSurface::Plane(plane) = &sketch_surface {
|
||||
// We pass in the normal for the plane here.
|
||||
let normal = plane.x_axis.cross(&plane.y_axis);
|
||||
let normal = plane.x_axis.axes_cross_product(&plane.y_axis);
|
||||
Some(normal.into())
|
||||
} else {
|
||||
None
|
||||
|
||||
@ -202,7 +202,7 @@ description: Variables in memory after executing angled_line.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -210,7 +210,7 @@ description: Variables in memory after executing angled_line.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -181,7 +181,7 @@ description: Variables in memory after executing artifact_graph_example_code1.kc
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -189,7 +189,7 @@ description: Variables in memory after executing artifact_graph_example_code1.kc
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -376,7 +376,7 @@ description: Variables in memory after executing artifact_graph_example_code1.kc
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -384,7 +384,7 @@ description: Variables in memory after executing artifact_graph_example_code1.kc
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -563,7 +563,7 @@ description: Variables in memory after executing artifact_graph_example_code1.kc
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -571,7 +571,7 @@ description: Variables in memory after executing artifact_graph_example_code1.kc
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -816,7 +816,7 @@ description: Variables in memory after executing artifact_graph_example_code1.kc
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -824,7 +824,7 @@ description: Variables in memory after executing artifact_graph_example_code1.kc
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -956,7 +956,7 @@ description: Variables in memory after executing artifact_graph_example_code1.kc
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -964,7 +964,7 @@ description: Variables in memory after executing artifact_graph_example_code1.kc
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1143,7 +1143,7 @@ description: Variables in memory after executing artifact_graph_example_code1.kc
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1151,7 +1151,7 @@ description: Variables in memory after executing artifact_graph_example_code1.kc
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -156,7 +156,7 @@ description: Variables in memory after executing artifact_graph_example_code_no_
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -164,7 +164,7 @@ description: Variables in memory after executing artifact_graph_example_code_no_
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -299,7 +299,7 @@ description: Variables in memory after executing artifact_graph_example_code_no_
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -307,7 +307,7 @@ description: Variables in memory after executing artifact_graph_example_code_no_
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -22,7 +22,7 @@ description: Variables in memory after executing artifact_graph_example_code_off
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -30,7 +30,7 @@ description: Variables in memory after executing artifact_graph_example_code_off
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -54,7 +54,7 @@ description: Variables in memory after executing artifact_graph_example_code_off
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -62,7 +62,7 @@ description: Variables in memory after executing artifact_graph_example_code_off
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -86,7 +86,7 @@ description: Variables in memory after executing artifact_graph_example_code_off
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -94,7 +94,7 @@ description: Variables in memory after executing artifact_graph_example_code_off
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -143,7 +143,7 @@ description: Variables in memory after executing artifact_graph_example_code_off
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -151,7 +151,7 @@ description: Variables in memory after executing artifact_graph_example_code_off
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -143,7 +143,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -151,7 +151,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -314,7 +314,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -322,7 +322,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -463,7 +463,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -471,7 +471,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -682,7 +682,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -690,7 +690,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -811,7 +811,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -819,7 +819,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -960,7 +960,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -968,7 +968,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1209,7 +1209,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1217,7 +1217,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1350,7 +1350,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1358,7 +1358,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1479,7 +1479,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1487,7 +1487,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1628,7 +1628,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1636,7 +1636,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1910,7 +1910,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1918,7 +1918,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2046,7 +2046,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2054,7 +2054,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2195,7 +2195,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2203,7 +2203,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2373,7 +2373,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2381,7 +2381,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2502,7 +2502,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2510,7 +2510,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2651,7 +2651,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2659,7 +2659,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2865,7 +2865,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2873,7 +2873,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3006,7 +3006,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3014,7 +3014,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3135,7 +3135,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3143,7 +3143,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3284,7 +3284,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3292,7 +3292,7 @@ description: Variables in memory after executing artifact_graph_sketch_on_face_e
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -174,7 +174,7 @@ description: Variables in memory after executing basic_fillet_cube_close_opposit
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -182,7 +182,7 @@ description: Variables in memory after executing basic_fillet_cube_close_opposit
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -162,7 +162,7 @@ description: Variables in memory after executing basic_fillet_cube_end.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -170,7 +170,7 @@ description: Variables in memory after executing basic_fillet_cube_end.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -186,7 +186,7 @@ description: Variables in memory after executing basic_fillet_cube_next_adjacent
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -194,7 +194,7 @@ description: Variables in memory after executing basic_fillet_cube_next_adjacent
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -186,7 +186,7 @@ description: Variables in memory after executing basic_fillet_cube_previous_adja
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -194,7 +194,7 @@ description: Variables in memory after executing basic_fillet_cube_previous_adja
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -162,7 +162,7 @@ description: Variables in memory after executing basic_fillet_cube_start.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -170,7 +170,7 @@ description: Variables in memory after executing basic_fillet_cube_start.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -72,7 +72,7 @@ description: Variables in memory after executing circle_three_point.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -80,7 +80,7 @@ description: Variables in memory after executing circle_three_point.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -155,7 +155,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -163,7 +163,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -330,7 +330,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -338,7 +338,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -491,7 +491,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -499,7 +499,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -748,7 +748,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -756,7 +756,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -912,7 +912,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -920,7 +920,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1014,7 +1014,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1022,7 +1022,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1175,7 +1175,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1183,7 +1183,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1376,7 +1376,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1384,7 +1384,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1537,7 +1537,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1545,7 +1545,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1719,7 +1719,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1727,7 +1727,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1880,7 +1880,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1888,7 +1888,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2005,7 +2005,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2013,7 +2013,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2166,7 +2166,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2174,7 +2174,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2342,7 +2342,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2350,7 +2350,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2503,7 +2503,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2511,7 +2511,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2649,7 +2649,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2657,7 +2657,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2787,7 +2787,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2795,7 +2795,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2925,7 +2925,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2933,7 +2933,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3012,7 +3012,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3020,7 +3020,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3175,7 +3175,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3183,7 +3183,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3326,7 +3326,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3334,7 +3334,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3487,7 +3487,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3495,7 +3495,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3706,7 +3706,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3714,7 +3714,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3780,7 +3780,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3788,7 +3788,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -3804,7 +3804,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3812,7 +3812,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3965,7 +3965,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3973,7 +3973,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4043,7 +4043,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4051,7 +4051,7 @@ description: Variables in memory after executing crazy_multi_profile.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -160,7 +160,7 @@ description: Variables in memory after executing cube.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -168,7 +168,7 @@ description: Variables in memory after executing cube.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -199,7 +199,7 @@ description: Variables in memory after executing fillet-and-shell.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -207,7 +207,7 @@ description: Variables in memory after executing fillet-and-shell.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -590,7 +590,7 @@ description: Variables in memory after executing fillet-and-shell.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -598,7 +598,7 @@ description: Variables in memory after executing fillet-and-shell.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -82,7 +82,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -90,7 +90,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -207,7 +207,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -215,7 +215,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -325,7 +325,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -333,7 +333,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -432,7 +432,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -440,7 +440,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -494,7 +494,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -502,7 +502,7 @@ description: Variables in memory after executing flush_batch_on_end.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -141,7 +141,7 @@ description: Variables in memory after executing function_sketch.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -149,7 +149,7 @@ description: Variables in memory after executing function_sketch.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -141,7 +141,7 @@ description: Variables in memory after executing function_sketch_with_position.k
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -149,7 +149,7 @@ description: Variables in memory after executing function_sketch_with_position.k
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -72,7 +72,7 @@ description: Variables in memory after executing helix_simple.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -80,7 +80,7 @@ description: Variables in memory after executing helix_simple.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -563,7 +563,7 @@ description: Variables in memory after executing i_shape.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -571,7 +571,7 @@ description: Variables in memory after executing i_shape.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1404,7 +1404,7 @@ description: Variables in memory after executing i_shape.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1412,7 +1412,7 @@ description: Variables in memory after executing i_shape.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1678,7 +1678,7 @@ description: Variables in memory after executing i_shape.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1686,7 +1686,7 @@ description: Variables in memory after executing i_shape.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -1015,7 +1015,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1023,7 +1023,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2021,7 +2021,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2029,7 +2029,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2093,7 +2093,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2101,7 +2101,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3624,7 +3624,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3632,7 +3632,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3689,7 +3689,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3697,7 +3697,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -7617,7 +7617,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7625,7 +7625,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -11574,7 +11574,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -11582,7 +11582,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -15531,7 +15531,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -15539,7 +15539,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -19488,7 +19488,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -19496,7 +19496,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -23445,7 +23445,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -23453,7 +23453,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -27402,7 +27402,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -27410,7 +27410,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -31359,7 +31359,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -31367,7 +31367,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -35316,7 +35316,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -35324,7 +35324,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -39273,7 +39273,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -39281,7 +39281,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -43230,7 +43230,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -43238,7 +43238,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -47187,7 +47187,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -47195,7 +47195,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -51144,7 +51144,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -51152,7 +51152,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -55101,7 +55101,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -55109,7 +55109,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -59058,7 +59058,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -59066,7 +59066,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -63015,7 +63015,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -63023,7 +63023,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -66972,7 +66972,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -66980,7 +66980,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -70929,7 +70929,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -70937,7 +70937,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -74886,7 +74886,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -74894,7 +74894,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -78843,7 +78843,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -78851,7 +78851,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -82800,7 +82800,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -82808,7 +82808,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -86757,7 +86757,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -86765,7 +86765,7 @@ description: Variables in memory after executing import_async.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -66,7 +66,7 @@ description: Variables in memory after executing import_whole.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -74,7 +74,7 @@ description: Variables in memory after executing import_whole.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -141,7 +141,7 @@ description: Variables in memory after executing intersect_cubes.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -149,7 +149,7 @@ description: Variables in memory after executing intersect_cubes.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -321,7 +321,7 @@ description: Variables in memory after executing intersect_cubes.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -329,7 +329,7 @@ description: Variables in memory after executing intersect_cubes.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -501,7 +501,7 @@ description: Variables in memory after executing intersect_cubes.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -509,7 +509,7 @@ description: Variables in memory after executing intersect_cubes.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -95,7 +95,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -103,7 +103,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -229,7 +229,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -237,7 +237,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -363,7 +363,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -371,7 +371,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -497,7 +497,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -505,7 +505,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -631,7 +631,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -639,7 +639,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -765,7 +765,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -773,7 +773,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -899,7 +899,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -907,7 +907,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1033,7 +1033,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1041,7 +1041,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1167,7 +1167,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1175,7 +1175,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1301,7 +1301,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1309,7 +1309,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1417,7 +1417,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1425,7 +1425,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1598,7 +1598,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1606,7 +1606,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1784,7 +1784,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1792,7 +1792,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1970,7 +1970,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1978,7 +1978,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2156,7 +2156,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2164,7 +2164,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2342,7 +2342,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2350,7 +2350,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2528,7 +2528,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2536,7 +2536,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2714,7 +2714,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2722,7 +2722,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2900,7 +2900,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2908,7 +2908,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3086,7 +3086,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3094,7 +3094,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3272,7 +3272,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3280,7 +3280,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3426,7 +3426,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3434,7 +3434,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3552,7 +3552,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3560,7 +3560,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3647,7 +3647,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3655,7 +3655,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3763,7 +3763,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3771,7 +3771,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3871,7 +3871,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3879,7 +3879,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3979,7 +3979,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3987,7 +3987,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4087,7 +4087,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4095,7 +4095,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4195,7 +4195,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4203,7 +4203,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4303,7 +4303,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4311,7 +4311,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4411,7 +4411,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4419,7 +4419,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4519,7 +4519,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4527,7 +4527,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4627,7 +4627,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4635,7 +4635,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4735,7 +4735,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4743,7 +4743,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4832,7 +4832,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4840,7 +4840,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4958,7 +4958,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4966,7 +4966,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5053,7 +5053,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5061,7 +5061,7 @@ description: Variables in memory after executing ball-bearing.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -121,7 +121,7 @@ description: Variables in memory after executing bottle.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -129,7 +129,7 @@ description: Variables in memory after executing bottle.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -247,7 +247,7 @@ description: Variables in memory after executing bottle.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -255,7 +255,7 @@ description: Variables in memory after executing bottle.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -374,7 +374,7 @@ description: Variables in memory after executing bottle.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -382,7 +382,7 @@ description: Variables in memory after executing bottle.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -510,7 +510,7 @@ description: Variables in memory after executing bottle.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -518,7 +518,7 @@ description: Variables in memory after executing bottle.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -637,7 +637,7 @@ description: Variables in memory after executing bottle.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -645,7 +645,7 @@ description: Variables in memory after executing bottle.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -294,7 +294,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -302,7 +302,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -570,7 +570,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -578,7 +578,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -857,7 +857,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -865,7 +865,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1019,7 +1019,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1027,7 +1027,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1306,7 +1306,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1314,7 +1314,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1468,7 +1468,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1476,7 +1476,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1755,7 +1755,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1763,7 +1763,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1917,7 +1917,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1925,7 +1925,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2204,7 +2204,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2212,7 +2212,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2436,7 +2436,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2444,7 +2444,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2723,7 +2723,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2731,7 +2731,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2885,7 +2885,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2893,7 +2893,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3172,7 +3172,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3180,7 +3180,7 @@ description: Variables in memory after executing bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -2861,9 +2861,9 @@ description: Artifact commands car-wheel-assembly.kcl
|
||||
"z": 2.54
|
||||
},
|
||||
"x_axis": {
|
||||
"x": 1.0,
|
||||
"x": 0.9998000599800071,
|
||||
"y": 0.0,
|
||||
"z": 0.02
|
||||
"z": 0.01999600119960014
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
@ -2885,9 +2885,9 @@ description: Artifact commands car-wheel-assembly.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": -0.02,
|
||||
"x": -0.01999600119960014,
|
||||
"y": 0.0,
|
||||
"z": 1.0
|
||||
"z": 0.9998000599800071
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3024,9 +3024,9 @@ description: Artifact commands car-wheel-assembly.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": -0.02,
|
||||
"x": -0.01999600119960014,
|
||||
"y": 0.0,
|
||||
"z": 1.0
|
||||
"z": 0.9998000599800071
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3387,9 +3387,9 @@ description: Artifact commands car-wheel-assembly.kcl
|
||||
"z": -2.54
|
||||
},
|
||||
"x_axis": {
|
||||
"x": 1.0,
|
||||
"x": 0.9998000599800071,
|
||||
"y": 0.0,
|
||||
"z": -0.02
|
||||
"z": -0.01999600119960014
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
@ -3411,9 +3411,9 @@ description: Artifact commands car-wheel-assembly.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.02,
|
||||
"x": 0.01999600119960014,
|
||||
"y": -0.0,
|
||||
"z": 1.0
|
||||
"z": 0.9998000599800071
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3550,9 +3550,9 @@ description: Artifact commands car-wheel-assembly.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.02,
|
||||
"x": 0.01999600119960014,
|
||||
"y": -0.0,
|
||||
"z": 1.0
|
||||
"z": 0.9998000599800071
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -22,7 +22,7 @@ description: Variables in memory after executing color-cube.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -30,7 +30,7 @@ description: Variables in memory after executing color-cube.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -67,7 +67,7 @@ description: Variables in memory after executing color-cube.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -75,7 +75,7 @@ description: Variables in memory after executing color-cube.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -125,7 +125,7 @@ description: Variables in memory after executing color-cube.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -133,7 +133,7 @@ description: Variables in memory after executing color-cube.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -157,7 +157,7 @@ description: Variables in memory after executing color-cube.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -165,7 +165,7 @@ description: Variables in memory after executing color-cube.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -218,7 +218,7 @@ description: Variables in memory after executing color-cube.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -226,7 +226,7 @@ description: Variables in memory after executing color-cube.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -250,7 +250,7 @@ description: Variables in memory after executing color-cube.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -258,7 +258,7 @@ description: Variables in memory after executing color-cube.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -163,7 +163,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -171,7 +171,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -343,7 +343,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -351,7 +351,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -523,7 +523,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -531,7 +531,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -703,7 +703,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -711,7 +711,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -883,7 +883,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -891,7 +891,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1063,7 +1063,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1071,7 +1071,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1243,7 +1243,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1251,7 +1251,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1423,7 +1423,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1431,7 +1431,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1603,7 +1603,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1611,7 +1611,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1783,7 +1783,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1791,7 +1791,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1963,7 +1963,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1971,7 +1971,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2143,7 +2143,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2151,7 +2151,7 @@ description: Variables in memory after executing dodecahedron.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -205,7 +205,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -213,7 +213,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -544,7 +544,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -552,7 +552,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -875,7 +875,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -883,7 +883,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1086,7 +1086,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1094,7 +1094,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1597,7 +1597,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1605,7 +1605,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1796,7 +1796,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1804,7 +1804,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1987,7 +1987,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1995,7 +1995,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2198,7 +2198,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2206,7 +2206,7 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -611,7 +611,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -619,7 +619,7 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -84,7 +84,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -92,7 +92,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -156,7 +156,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -164,7 +164,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -316,7 +316,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -324,7 +324,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -403,7 +403,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -411,7 +411,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -490,7 +490,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -498,7 +498,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -577,7 +577,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -585,7 +585,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -679,7 +679,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -687,7 +687,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -831,7 +831,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -839,7 +839,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -895,7 +895,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -903,7 +903,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -967,7 +967,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -975,7 +975,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1139,7 +1139,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1147,7 +1147,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1211,7 +1211,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1219,7 +1219,7 @@ description: Variables in memory after executing flange.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -338,7 +338,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -346,7 +346,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -900,7 +900,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -908,7 +908,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1241,7 +1241,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1249,7 +1249,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1395,7 +1395,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1403,7 +1403,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2027,7 +2027,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2035,7 +2035,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2311,7 +2311,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2319,7 +2319,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2600,7 +2600,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2608,7 +2608,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2884,7 +2884,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2892,7 +2892,7 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -2062,9 +2062,9 @@ description: Artifact commands food-service-spatula.kcl
|
||||
"z": 75.921946
|
||||
},
|
||||
"x_axis": {
|
||||
"x": 0.34202,
|
||||
"x": 0.342019894888923,
|
||||
"y": -0.0,
|
||||
"z": -0.939693
|
||||
"z": -0.9396927112094517
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
@ -2086,9 +2086,9 @@ description: Artifact commands food-service-spatula.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.939693,
|
||||
"x": 0.9396927112094517,
|
||||
"y": -0.0,
|
||||
"z": 0.34202
|
||||
"z": 0.342019894888923
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2305,9 +2305,9 @@ description: Artifact commands food-service-spatula.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.939693,
|
||||
"x": 0.9396927112094517,
|
||||
"y": -0.0,
|
||||
"z": 0.34202
|
||||
"z": 0.342019894888923
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -187,7 +187,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -195,7 +195,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -396,7 +396,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -404,7 +404,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -458,7 +458,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -466,7 +466,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -787,11 +787,11 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
}
|
||||
},
|
||||
"xAxis": {
|
||||
"x": 0.34202,
|
||||
"x": 0.342019894888923,
|
||||
"y": -0.0,
|
||||
"z": -0.939693,
|
||||
"z": -0.9396927112094517,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -799,7 +799,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -991,11 +991,11 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"artifactId": "[uuid]",
|
||||
"value": "gripEdgeTop",
|
||||
"xAxis": {
|
||||
"x": 0.34202,
|
||||
"x": 0.342019894888923,
|
||||
"y": -0.0,
|
||||
"z": -0.939693,
|
||||
"z": -0.9396927112094517,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1003,7 +1003,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1294,11 +1294,11 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
}
|
||||
},
|
||||
"xAxis": {
|
||||
"x": 0.34202,
|
||||
"x": 0.342019894888923,
|
||||
"y": -0.0,
|
||||
"z": -0.939693,
|
||||
"z": -0.9396927112094517,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1306,7 +1306,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1612,11 +1612,11 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
}
|
||||
},
|
||||
"xAxis": {
|
||||
"x": 0.34202,
|
||||
"x": 0.342019894888923,
|
||||
"y": -0.0,
|
||||
"z": -0.939693,
|
||||
"z": -0.9396927112094517,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1624,7 +1624,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1674,11 +1674,11 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
}
|
||||
},
|
||||
"xAxis": {
|
||||
"x": 0.34202,
|
||||
"x": 0.342019894888923,
|
||||
"y": -0.0,
|
||||
"z": -0.939693,
|
||||
"z": -0.9396927112094517,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1686,7 +1686,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1954,7 +1954,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1962,7 +1962,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2365,7 +2365,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2373,7 +2373,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2431,7 +2431,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2439,7 +2439,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2469,11 +2469,11 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"artifactId": "[uuid]",
|
||||
"value": "gripEdgeTop",
|
||||
"xAxis": {
|
||||
"x": 0.34202,
|
||||
"x": 0.342019894888923,
|
||||
"y": -0.0,
|
||||
"z": -0.939693,
|
||||
"z": -0.9396927112094517,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2481,7 +2481,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2772,11 +2772,11 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
}
|
||||
},
|
||||
"xAxis": {
|
||||
"x": 0.34202,
|
||||
"x": 0.342019894888923,
|
||||
"y": -0.0,
|
||||
"z": -0.939693,
|
||||
"z": -0.9396927112094517,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2784,7 +2784,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2964,7 +2964,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2972,7 +2972,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3131,7 +3131,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3139,7 +3139,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3298,7 +3298,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3306,7 +3306,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3467,7 +3467,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3475,7 +3475,7 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -414,8 +414,8 @@ description: Artifact commands french-press.kcl
|
||||
"z": 0.0
|
||||
},
|
||||
"x_axis": {
|
||||
"x": 1.0,
|
||||
"y": 1.0,
|
||||
"x": 0.7071067811865475,
|
||||
"y": 0.7071067811865475,
|
||||
"z": 0.0
|
||||
},
|
||||
"y_axis": {
|
||||
@ -438,8 +438,8 @@ description: Artifact commands french-press.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 1.0,
|
||||
"y": -1.0,
|
||||
"x": 0.7071067811865475,
|
||||
"y": -0.7071067811865475,
|
||||
"z": 0.0
|
||||
}
|
||||
}
|
||||
@ -809,8 +809,8 @@ description: Artifact commands french-press.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 1.0,
|
||||
"y": -1.0,
|
||||
"x": 0.7071067811865475,
|
||||
"y": -0.7071067811865475,
|
||||
"z": 0.0
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1015,7 +1015,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1023,7 +1023,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2021,7 +2021,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2029,7 +2029,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2093,7 +2093,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2101,7 +2101,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3613,7 +3613,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3621,7 +3621,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7574,7 +7574,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7582,7 +7582,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -11531,7 +11531,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -11539,7 +11539,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -15488,7 +15488,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -15496,7 +15496,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -19445,7 +19445,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -19453,7 +19453,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -23402,7 +23402,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -23410,7 +23410,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -27359,7 +27359,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -27367,7 +27367,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -31316,7 +31316,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -31324,7 +31324,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -35273,7 +35273,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -35281,7 +35281,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -39230,7 +39230,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -39238,7 +39238,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -43187,7 +43187,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -43195,7 +43195,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -47144,7 +47144,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -47152,7 +47152,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -51101,7 +51101,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -51109,7 +51109,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -55058,7 +55058,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -55066,7 +55066,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -59015,7 +59015,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -59023,7 +59023,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -62972,7 +62972,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -62980,7 +62980,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -66929,7 +66929,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -66937,7 +66937,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -70886,7 +70886,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -70894,7 +70894,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -74843,7 +74843,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -74851,7 +74851,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -78800,7 +78800,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -78808,7 +78808,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -82757,7 +82757,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -82765,7 +82765,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -86714,7 +86714,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -86722,7 +86722,7 @@ description: Variables in memory after executing gear.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -234,7 +234,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -242,7 +242,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -440,7 +440,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -448,7 +448,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -646,7 +646,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -654,7 +654,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -852,7 +852,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -860,7 +860,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1058,7 +1058,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1066,7 +1066,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1264,7 +1264,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1272,7 +1272,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1470,7 +1470,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1478,7 +1478,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1676,7 +1676,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1684,7 +1684,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1882,7 +1882,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1890,7 +1890,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2088,7 +2088,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2096,7 +2096,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2294,7 +2294,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2302,7 +2302,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2500,7 +2500,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2508,7 +2508,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2706,7 +2706,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2714,7 +2714,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2912,7 +2912,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2920,7 +2920,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3118,7 +3118,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3126,7 +3126,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3324,7 +3324,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3332,7 +3332,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3530,7 +3530,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3538,7 +3538,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3736,7 +3736,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3744,7 +3744,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3942,7 +3942,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3950,7 +3950,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4148,7 +4148,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4156,7 +4156,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4354,7 +4354,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4362,7 +4362,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4560,7 +4560,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4568,7 +4568,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4766,7 +4766,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4774,7 +4774,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4972,7 +4972,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4980,7 +4980,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5183,7 +5183,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5191,7 +5191,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5389,7 +5389,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5397,7 +5397,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5595,7 +5595,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5603,7 +5603,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5801,7 +5801,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5809,7 +5809,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6007,7 +6007,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6015,7 +6015,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6213,7 +6213,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6221,7 +6221,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6419,7 +6419,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6427,7 +6427,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6625,7 +6625,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6633,7 +6633,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6831,7 +6831,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6839,7 +6839,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7037,7 +7037,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7045,7 +7045,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7243,7 +7243,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7251,7 +7251,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7449,7 +7449,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7457,7 +7457,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7655,7 +7655,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7663,7 +7663,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7861,7 +7861,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7869,7 +7869,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8067,7 +8067,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8075,7 +8075,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8273,7 +8273,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8281,7 +8281,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8479,7 +8479,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8487,7 +8487,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8685,7 +8685,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8693,7 +8693,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8891,7 +8891,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8899,7 +8899,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9097,7 +9097,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9105,7 +9105,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9303,7 +9303,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9311,7 +9311,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9509,7 +9509,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9517,7 +9517,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9715,7 +9715,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9723,7 +9723,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9921,7 +9921,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9929,7 +9929,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -10158,7 +10158,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -10166,7 +10166,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -10364,7 +10364,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -10372,7 +10372,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -10570,7 +10570,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -10578,7 +10578,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -10776,7 +10776,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -10784,7 +10784,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -11055,7 +11055,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -11063,7 +11063,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -11261,7 +11261,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -11269,7 +11269,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -11467,7 +11467,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -11475,7 +11475,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -11673,7 +11673,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -11681,7 +11681,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -11881,7 +11881,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -11889,7 +11889,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -12087,7 +12087,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -12095,7 +12095,7 @@ description: Variables in memory after executing gridfinity-baseplate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -181,7 +181,7 @@ description: Variables in memory after executing i-beam.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -189,7 +189,7 @@ description: Variables in memory after executing i-beam.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -1178,8 +1178,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -1197,8 +1197,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1389,8 +1389,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1849,8 +1849,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -1868,8 +1868,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2060,8 +2060,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2579,8 +2579,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -2598,8 +2598,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2790,8 +2790,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3250,8 +3250,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -3269,8 +3269,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3461,8 +3461,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3921,8 +3921,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -3940,8 +3940,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4132,8 +4132,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4592,8 +4592,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -4611,8 +4611,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4803,8 +4803,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5263,8 +5263,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -5282,8 +5282,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5474,8 +5474,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5934,8 +5934,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -5953,8 +5953,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6145,8 +6145,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6605,8 +6605,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -6624,8 +6624,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6816,8 +6816,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7538,8 +7538,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -7557,8 +7557,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7749,8 +7749,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8209,8 +8209,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -8228,8 +8228,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8420,8 +8420,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8880,8 +8880,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -8899,8 +8899,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9091,8 +9091,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9842,8 +9842,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -9861,8 +9861,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -10053,8 +10053,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -10513,8 +10513,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -10532,8 +10532,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -10724,8 +10724,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -11184,8 +11184,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -11203,8 +11203,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -11395,8 +11395,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -12175,8 +12175,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -12194,8 +12194,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -12386,8 +12386,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -12846,8 +12846,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -12865,8 +12865,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -13057,8 +13057,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -13866,8 +13866,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -13885,8 +13885,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -14077,8 +14077,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -14537,8 +14537,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -14556,8 +14556,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -14748,8 +14748,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -15208,8 +15208,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -15227,8 +15227,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -15419,8 +15419,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -16199,8 +16199,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -16218,8 +16218,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -16410,8 +16410,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -16870,8 +16870,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -16889,8 +16889,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -17195,8 +17195,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -18021,8 +18021,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -18040,8 +18040,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -18158,8 +18158,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -18420,8 +18420,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -18439,8 +18439,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -18557,8 +18557,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -18819,8 +18819,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -18838,8 +18838,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -18956,8 +18956,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -19218,8 +19218,8 @@ description: Artifact commands keyboard.kcl
|
||||
},
|
||||
"y_axis": {
|
||||
"x": 0.0,
|
||||
"y": 1.0,
|
||||
"z": 0.12186934340514748
|
||||
"y": 0.9926556406329575,
|
||||
"z": 0.12097429115135457
|
||||
},
|
||||
"size": 60.0,
|
||||
"clobber": false,
|
||||
@ -19237,8 +19237,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -19355,8 +19355,8 @@ description: Artifact commands keyboard.kcl
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.0,
|
||||
"y": -0.12186934340514748,
|
||||
"z": 1.0
|
||||
"y": -0.12097429115135457,
|
||||
"z": 0.9926556406329575
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -441,7 +441,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -449,7 +449,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -652,7 +652,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -660,7 +660,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -859,7 +859,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -867,7 +867,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1070,7 +1070,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1078,7 +1078,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1277,7 +1277,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1285,7 +1285,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1488,7 +1488,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1496,7 +1496,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1695,7 +1695,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1703,7 +1703,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1906,7 +1906,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1914,7 +1914,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2371,7 +2371,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2379,7 +2379,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2519,7 +2519,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2527,7 +2527,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2730,7 +2730,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2738,7 +2738,7 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -138,7 +138,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -146,7 +146,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -319,7 +319,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -327,7 +327,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -463,7 +463,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -471,7 +471,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -599,7 +599,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -607,7 +607,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -743,7 +743,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -751,7 +751,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -879,7 +879,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -887,7 +887,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1023,7 +1023,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1031,7 +1031,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1159,7 +1159,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1167,7 +1167,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1303,7 +1303,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1311,7 +1311,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1439,7 +1439,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1447,7 +1447,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1583,7 +1583,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1591,7 +1591,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1719,7 +1719,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1727,7 +1727,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1863,7 +1863,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1871,7 +1871,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2099,7 +2099,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2107,7 +2107,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2243,7 +2243,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2251,7 +2251,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2421,7 +2421,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2429,7 +2429,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2557,7 +2557,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2565,7 +2565,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2701,7 +2701,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2709,7 +2709,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2873,7 +2873,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2881,7 +2881,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3009,7 +3009,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3017,7 +3017,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3153,7 +3153,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3161,7 +3161,7 @@ description: Variables in memory after executing lego.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -121,7 +121,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -129,7 +129,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -229,7 +229,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -237,7 +237,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -379,7 +379,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -387,7 +387,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -487,7 +487,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -495,7 +495,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -595,7 +595,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -603,7 +603,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -703,7 +703,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -711,7 +711,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -811,7 +811,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -819,7 +819,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -919,7 +919,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -927,7 +927,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1027,7 +1027,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1035,7 +1035,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1148,7 +1148,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1156,7 +1156,7 @@ description: Variables in memory after executing makeup-mirror.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -258,7 +258,7 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -266,7 +266,7 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -562,7 +562,7 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -570,7 +570,7 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -2097,8 +2097,8 @@ description: Artifact commands multi-axis-robot.kcl
|
||||
"z": 0.0
|
||||
},
|
||||
"x_axis": {
|
||||
"x": 0.984807753012208,
|
||||
"y": 0.17364817766693041,
|
||||
"x": 0.9848077530122081,
|
||||
"y": 0.17364817766693044,
|
||||
"z": 0.0
|
||||
},
|
||||
"y_axis": {
|
||||
@ -2121,8 +2121,8 @@ description: Artifact commands multi-axis-robot.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.17364817766693041,
|
||||
"y": -0.984807753012208,
|
||||
"x": 0.17364817766693044,
|
||||
"y": -0.9848077530122081,
|
||||
"z": 0.0
|
||||
}
|
||||
}
|
||||
@ -2248,8 +2248,8 @@ description: Artifact commands multi-axis-robot.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.17364817766693041,
|
||||
"y": -0.984807753012208,
|
||||
"x": 0.17364817766693044,
|
||||
"y": -0.9848077530122081,
|
||||
"z": 0.0
|
||||
}
|
||||
}
|
||||
@ -3338,8 +3338,8 @@ description: Artifact commands multi-axis-robot.kcl
|
||||
"z": 0.0
|
||||
},
|
||||
"x_axis": {
|
||||
"x": 0.984807753012208,
|
||||
"y": 0.17364817766693041,
|
||||
"x": 0.9848077530122081,
|
||||
"y": 0.17364817766693044,
|
||||
"z": 0.0
|
||||
},
|
||||
"y_axis": {
|
||||
@ -3362,8 +3362,8 @@ description: Artifact commands multi-axis-robot.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.17364817766693041,
|
||||
"y": -0.984807753012208,
|
||||
"x": 0.17364817766693044,
|
||||
"y": -0.9848077530122081,
|
||||
"z": 0.0
|
||||
}
|
||||
}
|
||||
@ -3438,8 +3438,8 @@ description: Artifact commands multi-axis-robot.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.17364817766693041,
|
||||
"y": -0.984807753012208,
|
||||
"x": 0.17364817766693044,
|
||||
"y": -0.9848077530122081,
|
||||
"z": 0.0
|
||||
}
|
||||
}
|
||||
@ -3588,8 +3588,8 @@ description: Artifact commands multi-axis-robot.kcl
|
||||
"z": 0.0
|
||||
},
|
||||
"x_axis": {
|
||||
"x": 0.984807753012208,
|
||||
"y": 0.17364817766693041,
|
||||
"x": 0.9848077530122081,
|
||||
"y": 0.17364817766693044,
|
||||
"z": 0.0
|
||||
},
|
||||
"y_axis": {
|
||||
@ -3612,8 +3612,8 @@ description: Artifact commands multi-axis-robot.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.17364817766693041,
|
||||
"y": -0.984807753012208,
|
||||
"x": 0.17364817766693044,
|
||||
"y": -0.9848077530122081,
|
||||
"z": 0.0
|
||||
}
|
||||
}
|
||||
@ -3747,8 +3747,8 @@ description: Artifact commands multi-axis-robot.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.17364817766693041,
|
||||
"y": -0.984807753012208,
|
||||
"x": 0.17364817766693044,
|
||||
"y": -0.9848077530122081,
|
||||
"z": 0.0
|
||||
}
|
||||
}
|
||||
@ -5869,8 +5869,8 @@ description: Artifact commands multi-axis-robot.kcl
|
||||
"z": 0.0
|
||||
},
|
||||
"x_axis": {
|
||||
"x": 0.984807753012208,
|
||||
"y": 0.17364817766693041,
|
||||
"x": 0.9848077530122081,
|
||||
"y": 0.17364817766693044,
|
||||
"z": 0.0
|
||||
},
|
||||
"y_axis": {
|
||||
@ -5893,8 +5893,8 @@ description: Artifact commands multi-axis-robot.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.17364817766693041,
|
||||
"y": -0.984807753012208,
|
||||
"x": 0.17364817766693044,
|
||||
"y": -0.9848077530122081,
|
||||
"z": 0.0
|
||||
}
|
||||
}
|
||||
@ -6028,8 +6028,8 @@ description: Artifact commands multi-axis-robot.kcl
|
||||
"animated": false,
|
||||
"adjust_camera": false,
|
||||
"planar_normal": {
|
||||
"x": 0.17364817766693041,
|
||||
"y": -0.984807753012208,
|
||||
"x": 0.17364817766693044,
|
||||
"y": -0.9848077530122081,
|
||||
"z": 0.0
|
||||
}
|
||||
}
|
||||
|
||||
@ -151,7 +151,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -159,7 +159,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -254,7 +254,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -262,7 +262,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -398,7 +398,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -406,7 +406,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -534,7 +534,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -542,7 +542,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -678,7 +678,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -686,7 +686,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -814,7 +814,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -822,7 +822,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -958,7 +958,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -966,7 +966,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1094,7 +1094,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1102,7 +1102,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1238,7 +1238,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1246,7 +1246,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1402,7 +1402,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1410,7 +1410,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1546,7 +1546,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1554,7 +1554,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1685,7 +1685,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1693,7 +1693,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1829,7 +1829,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1837,7 +1837,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1965,7 +1965,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1973,7 +1973,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2109,7 +2109,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2117,7 +2117,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2245,7 +2245,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2253,7 +2253,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2389,7 +2389,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2397,7 +2397,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2525,7 +2525,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2533,7 +2533,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2669,7 +2669,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2677,7 +2677,7 @@ description: Variables in memory after executing parametric-bearing-pillow-block
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -92,7 +92,7 @@ description: Variables in memory after executing pipe-with-bend.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -100,7 +100,7 @@ description: Variables in memory after executing pipe-with-bend.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -192,7 +192,7 @@ description: Variables in memory after executing pipe-with-bend.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -200,7 +200,7 @@ description: Variables in memory after executing pipe-with-bend.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -292,7 +292,7 @@ description: Variables in memory after executing pipe-with-bend.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -300,7 +300,7 @@ description: Variables in memory after executing pipe-with-bend.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -387,7 +387,7 @@ description: Variables in memory after executing pipe-with-bend.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -395,7 +395,7 @@ description: Variables in memory after executing pipe-with-bend.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -443,7 +443,7 @@ description: Variables in memory after executing pipe-with-bend.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -451,7 +451,7 @@ description: Variables in memory after executing pipe-with-bend.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -58,7 +58,7 @@ description: Variables in memory after executing pipe.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -66,7 +66,7 @@ description: Variables in memory after executing pipe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -130,7 +130,7 @@ description: Variables in memory after executing pipe.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -138,7 +138,7 @@ description: Variables in memory after executing pipe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -274,7 +274,7 @@ description: Variables in memory after executing pipe.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -282,7 +282,7 @@ description: Variables in memory after executing pipe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -860,7 +860,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": -1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -868,7 +868,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1209,7 +1209,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": -1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1217,7 +1217,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1633,7 +1633,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": -1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1641,7 +1641,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1798,7 +1798,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Inches"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1806,7 +1806,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Inches"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2200,7 +2200,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": -1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2208,7 +2208,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2590,7 +2590,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": -1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2598,7 +2598,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2892,7 +2892,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Inches"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2900,7 +2900,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Inches"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3070,7 +3070,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Inches"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3078,7 +3078,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Inches"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3288,7 +3288,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Inches"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3296,7 +3296,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Inches"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3502,7 +3502,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": -1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3510,7 +3510,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3868,7 +3868,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": -1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3876,7 +3876,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -4258,7 +4258,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": -1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4266,7 +4266,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4522,7 +4522,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": -1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Inches"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4530,7 +4530,7 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Inches"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -720,7 +720,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -728,7 +728,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -989,7 +989,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -997,7 +997,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1693,7 +1693,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1701,7 +1701,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2012,7 +2012,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2020,7 +2020,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2716,7 +2716,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2724,7 +2724,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3035,7 +3035,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3043,7 +3043,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3226,7 +3226,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3234,7 +3234,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3930,7 +3930,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3938,7 +3938,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4747,7 +4747,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4755,7 +4755,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4956,7 +4956,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4964,7 +4964,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -5660,7 +5660,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5668,7 +5668,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5919,7 +5919,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5927,7 +5927,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -6623,7 +6623,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6631,7 +6631,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6882,7 +6882,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6890,7 +6890,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -7073,7 +7073,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7081,7 +7081,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -7777,7 +7777,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7785,7 +7785,7 @@ description: Variables in memory after executing router-template-cross-bar.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -437,7 +437,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -445,7 +445,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -686,7 +686,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -694,7 +694,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1116,7 +1116,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1124,7 +1124,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1391,7 +1391,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1399,7 +1399,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1821,7 +1821,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1829,7 +1829,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2354,7 +2354,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2362,7 +2362,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2543,7 +2543,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2551,7 +2551,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2973,7 +2973,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2981,7 +2981,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3200,7 +3200,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3208,7 +3208,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3630,7 +3630,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3638,7 +3638,7 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -748,7 +748,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -756,7 +756,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -952,7 +952,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -960,7 +960,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1693,7 +1693,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1701,7 +1701,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2040,7 +2040,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2048,7 +2048,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2781,7 +2781,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2789,7 +2789,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3021,7 +3021,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3029,7 +3029,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3762,7 +3762,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3770,7 +3770,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4059,7 +4059,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4067,7 +4067,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -4800,7 +4800,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4808,7 +4808,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5040,7 +5040,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5048,7 +5048,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -5781,7 +5781,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5789,7 +5789,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6074,7 +6074,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6082,7 +6082,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -6815,7 +6815,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6823,7 +6823,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7055,7 +7055,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7063,7 +7063,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -7796,7 +7796,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7804,7 +7804,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8036,7 +8036,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8044,7 +8044,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -8777,7 +8777,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8785,7 +8785,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9017,7 +9017,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9025,7 +9025,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -9758,7 +9758,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9766,7 +9766,7 @@ description: Variables in memory after executing sheet-metal-bracket.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -70,7 +70,7 @@ description: Variables in memory after executing socket-head-cap-screw.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -78,7 +78,7 @@ description: Variables in memory after executing socket-head-cap-screw.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -154,7 +154,7 @@ description: Variables in memory after executing socket-head-cap-screw.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -162,7 +162,7 @@ description: Variables in memory after executing socket-head-cap-screw.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -393,7 +393,7 @@ description: Variables in memory after executing socket-head-cap-screw.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -401,7 +401,7 @@ description: Variables in memory after executing socket-head-cap-screw.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -731,7 +731,7 @@ description: Variables in memory after executing socket-head-cap-screw.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -739,7 +739,7 @@ description: Variables in memory after executing socket-head-cap-screw.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -815,7 +815,7 @@ description: Variables in memory after executing socket-head-cap-screw.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -823,7 +823,7 @@ description: Variables in memory after executing socket-head-cap-screw.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -131,7 +131,7 @@ description: Variables in memory after executing washer.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -139,7 +139,7 @@ description: Variables in memory after executing washer.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -226,7 +226,7 @@ description: Variables in memory after executing washer.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -234,7 +234,7 @@ description: Variables in memory after executing washer.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -7359,7 +7359,7 @@ description: Variables in memory after executing kittycad_svg.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7367,7 +7367,7 @@ description: Variables in memory after executing kittycad_svg.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -138,7 +138,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -146,7 +146,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -321,7 +321,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -329,7 +329,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -501,7 +501,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -509,7 +509,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -681,7 +681,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -689,7 +689,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -861,7 +861,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -869,7 +869,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1041,7 +1041,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1049,7 +1049,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1221,7 +1221,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1229,7 +1229,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1401,7 +1401,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1409,7 +1409,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1586,7 +1586,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1594,7 +1594,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1766,7 +1766,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1774,7 +1774,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1946,7 +1946,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1954,7 +1954,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2126,7 +2126,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2134,7 +2134,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2306,7 +2306,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2314,7 +2314,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2486,7 +2486,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2494,7 +2494,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2666,7 +2666,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2674,7 +2674,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2846,7 +2846,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2854,7 +2854,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3026,7 +3026,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3034,7 +3034,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3206,7 +3206,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3214,7 +3214,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3386,7 +3386,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3394,7 +3394,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3566,7 +3566,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3574,7 +3574,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3746,7 +3746,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3754,7 +3754,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3926,7 +3926,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3934,7 +3934,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4106,7 +4106,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4114,7 +4114,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4286,7 +4286,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4294,7 +4294,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4466,7 +4466,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4474,7 +4474,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4646,7 +4646,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4654,7 +4654,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4826,7 +4826,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4834,7 +4834,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5006,7 +5006,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5014,7 +5014,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5186,7 +5186,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5194,7 +5194,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5366,7 +5366,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5374,7 +5374,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5546,7 +5546,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5554,7 +5554,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5726,7 +5726,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5734,7 +5734,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5906,7 +5906,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5914,7 +5914,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6086,7 +6086,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6094,7 +6094,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6266,7 +6266,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6274,7 +6274,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6446,7 +6446,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6454,7 +6454,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6626,7 +6626,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6634,7 +6634,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6806,7 +6806,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6814,7 +6814,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6986,7 +6986,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6994,7 +6994,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7166,7 +7166,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7174,7 +7174,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7346,7 +7346,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7354,7 +7354,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7526,7 +7526,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7534,7 +7534,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7706,7 +7706,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7714,7 +7714,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7886,7 +7886,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7894,7 +7894,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8066,7 +8066,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8074,7 +8074,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8246,7 +8246,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8254,7 +8254,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8426,7 +8426,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8434,7 +8434,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8606,7 +8606,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8614,7 +8614,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8786,7 +8786,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8794,7 +8794,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8966,7 +8966,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8974,7 +8974,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9146,7 +9146,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9154,7 +9154,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9326,7 +9326,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9334,7 +9334,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9506,7 +9506,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9514,7 +9514,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9686,7 +9686,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9694,7 +9694,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9866,7 +9866,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9874,7 +9874,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -10046,7 +10046,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -10054,7 +10054,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -10226,7 +10226,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -10234,7 +10234,7 @@ description: Variables in memory after executing linear_pattern3d_a_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -1288,7 +1288,7 @@ description: Variables in memory after executing loop_tag.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1296,7 +1296,7 @@ description: Variables in memory after executing loop_tag.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3250,7 +3250,7 @@ description: Variables in memory after executing loop_tag.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3258,7 +3258,7 @@ description: Variables in memory after executing loop_tag.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4551,7 +4551,7 @@ description: Variables in memory after executing loop_tag.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4559,7 +4559,7 @@ description: Variables in memory after executing loop_tag.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4631,7 +4631,7 @@ description: Variables in memory after executing loop_tag.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4639,7 +4639,7 @@ description: Variables in memory after executing loop_tag.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -112,7 +112,7 @@ description: Variables in memory after executing neg_xz_plane.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -120,7 +120,7 @@ description: Variables in memory after executing neg_xz_plane.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -66,7 +66,7 @@ description: Variables in memory after executing out_of_band_sketches.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -74,7 +74,7 @@ description: Variables in memory after executing out_of_band_sketches.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -204,7 +204,7 @@ description: Variables in memory after executing out_of_band_sketches.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -212,7 +212,7 @@ description: Variables in memory after executing out_of_band_sketches.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -304,7 +304,7 @@ description: Variables in memory after executing out_of_band_sketches.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -312,7 +312,7 @@ description: Variables in memory after executing out_of_band_sketches.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -442,7 +442,7 @@ description: Variables in memory after executing out_of_band_sketches.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -450,7 +450,7 @@ description: Variables in memory after executing out_of_band_sketches.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -498,7 +498,7 @@ description: Variables in memory after executing out_of_band_sketches.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -506,7 +506,7 @@ description: Variables in memory after executing out_of_band_sketches.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -530,7 +530,7 @@ description: Variables in memory after executing out_of_band_sketches.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -538,7 +538,7 @@ description: Variables in memory after executing out_of_band_sketches.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -203,7 +203,7 @@ description: Variables in memory after executing parametric.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -211,7 +211,7 @@ description: Variables in memory after executing parametric.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -265,7 +265,7 @@ description: Variables in memory after executing parametric_with_tan_arc.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -273,7 +273,7 @@ description: Variables in memory after executing parametric_with_tan_arc.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -90,7 +90,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -98,7 +98,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -244,7 +244,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -252,7 +252,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -404,7 +404,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -412,7 +412,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -558,7 +558,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -566,7 +566,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -799,7 +799,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -807,7 +807,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -944,7 +944,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -952,7 +952,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1098,7 +1098,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1106,7 +1106,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1323,7 +1323,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1331,7 +1331,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1477,7 +1477,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1485,7 +1485,7 @@ description: Variables in memory after executing pentagon_fillet_sugar.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -163,7 +163,7 @@ description: Variables in memory after executing pipe_as_arg.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -171,7 +171,7 @@ description: Variables in memory after executing pipe_as_arg.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -501,7 +501,7 @@ description: Variables in memory after executing poop_chute.kcl
|
||||
"y": -1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -509,7 +509,7 @@ description: Variables in memory after executing poop_chute.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -840,7 +840,7 @@ description: Variables in memory after executing poop_chute.kcl
|
||||
"y": -1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -848,7 +848,7 @@ description: Variables in memory after executing poop_chute.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1264,7 +1264,7 @@ description: Variables in memory after executing poop_chute.kcl
|
||||
"y": -1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1272,7 +1272,7 @@ description: Variables in memory after executing poop_chute.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -58,7 +58,7 @@ description: Variables in memory after executing revolve_about_edge.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -66,7 +66,7 @@ description: Variables in memory after executing revolve_about_edge.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -164,7 +164,7 @@ description: Variables in memory after executing revolve_about_edge.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -172,7 +172,7 @@ description: Variables in memory after executing revolve_about_edge.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -177,7 +177,7 @@ description: Variables in memory after executing riddle_small.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -185,7 +185,7 @@ description: Variables in memory after executing riddle_small.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -219,7 +219,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -227,7 +227,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -536,7 +536,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -544,7 +544,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -761,7 +761,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -769,7 +769,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1139,7 +1139,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1147,7 +1147,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1328,7 +1328,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1336,7 +1336,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1553,7 +1553,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1561,7 +1561,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1860,7 +1860,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1868,7 +1868,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2085,7 +2085,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2093,7 +2093,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times-dif
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -219,7 +219,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -227,7 +227,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -536,7 +536,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -544,7 +544,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -761,7 +761,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -769,7 +769,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1139,7 +1139,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1147,7 +1147,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1328,7 +1328,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1336,7 +1336,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1553,7 +1553,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1561,7 +1561,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1860,7 +1860,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1868,7 +1868,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2085,7 +2085,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2093,7 +2093,7 @@ description: Variables in memory after executing sketch-on-chamfer-two-times.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -110,7 +110,7 @@ description: Variables in memory after executing sketch_in_object.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -118,7 +118,7 @@ description: Variables in memory after executing sketch_in_object.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -254,7 +254,7 @@ description: Variables in memory after executing sketch_in_object.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -262,7 +262,7 @@ description: Variables in memory after executing sketch_in_object.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -155,7 +155,7 @@ description: Variables in memory after executing sketch_on_face.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -163,7 +163,7 @@ description: Variables in memory after executing sketch_on_face.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -333,7 +333,7 @@ description: Variables in memory after executing sketch_on_face.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -341,7 +341,7 @@ description: Variables in memory after executing sketch_on_face.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -489,7 +489,7 @@ description: Variables in memory after executing sketch_on_face.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -497,7 +497,7 @@ description: Variables in memory after executing sketch_on_face.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -265,7 +265,7 @@ description: Variables in memory after executing sketch_on_face_after_fillets_re
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -273,7 +273,7 @@ description: Variables in memory after executing sketch_on_face_after_fillets_re
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -575,7 +575,7 @@ description: Variables in memory after executing sketch_on_face_after_fillets_re
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -583,7 +583,7 @@ description: Variables in memory after executing sketch_on_face_after_fillets_re
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -807,7 +807,7 @@ description: Variables in memory after executing sketch_on_face_after_fillets_re
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -815,7 +815,7 @@ description: Variables in memory after executing sketch_on_face_after_fillets_re
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -146,7 +146,7 @@ description: Variables in memory after executing sketch_on_face_circle_tagged.kc
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -154,7 +154,7 @@ description: Variables in memory after executing sketch_on_face_circle_tagged.kc
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -258,7 +258,7 @@ description: Variables in memory after executing sketch_on_face_circle_tagged.kc
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -266,7 +266,7 @@ description: Variables in memory after executing sketch_on_face_circle_tagged.kc
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -402,7 +402,7 @@ description: Variables in memory after executing sketch_on_face_circle_tagged.kc
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -410,7 +410,7 @@ description: Variables in memory after executing sketch_on_face_circle_tagged.kc
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -141,7 +141,7 @@ description: Variables in memory after executing sketch_on_face_end.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -149,7 +149,7 @@ description: Variables in memory after executing sketch_on_face_end.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -313,7 +313,7 @@ description: Variables in memory after executing sketch_on_face_end.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -321,7 +321,7 @@ description: Variables in memory after executing sketch_on_face_end.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -457,7 +457,7 @@ description: Variables in memory after executing sketch_on_face_end.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -465,7 +465,7 @@ description: Variables in memory after executing sketch_on_face_end.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -141,7 +141,7 @@ description: Variables in memory after executing sketch_on_face_end_negative_ext
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -149,7 +149,7 @@ description: Variables in memory after executing sketch_on_face_end_negative_ext
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -313,7 +313,7 @@ description: Variables in memory after executing sketch_on_face_end_negative_ext
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -321,7 +321,7 @@ description: Variables in memory after executing sketch_on_face_end_negative_ext
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -457,7 +457,7 @@ description: Variables in memory after executing sketch_on_face_end_negative_ext
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -465,7 +465,7 @@ description: Variables in memory after executing sketch_on_face_end_negative_ext
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -141,7 +141,7 @@ description: Variables in memory after executing sketch_on_face_start.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -149,7 +149,7 @@ description: Variables in memory after executing sketch_on_face_start.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -321,7 +321,7 @@ description: Variables in memory after executing sketch_on_face_start.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -329,7 +329,7 @@ description: Variables in memory after executing sketch_on_face_start.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -493,7 +493,7 @@ description: Variables in memory after executing sketch_on_face_start.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -501,7 +501,7 @@ description: Variables in memory after executing sketch_on_face_start.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -637,7 +637,7 @@ description: Variables in memory after executing sketch_on_face_start.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -645,7 +645,7 @@ description: Variables in memory after executing sketch_on_face_start.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -200,7 +200,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -208,7 +208,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -406,7 +406,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -414,7 +414,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -507,7 +507,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -515,7 +515,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -713,7 +713,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -721,7 +721,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -855,7 +855,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -863,7 +863,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1061,7 +1061,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1069,7 +1069,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1203,7 +1203,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1211,7 +1211,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1409,7 +1409,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1417,7 +1417,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1551,7 +1551,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1559,7 +1559,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -1757,7 +1757,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1765,7 +1765,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1899,7 +1899,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -1907,7 +1907,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2105,7 +2105,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2113,7 +2113,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2247,7 +2247,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2255,7 +2255,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2453,7 +2453,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2461,7 +2461,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2595,7 +2595,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2603,7 +2603,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -2801,7 +2801,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2809,7 +2809,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2943,7 +2943,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -2951,7 +2951,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3149,7 +3149,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3157,7 +3157,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3291,7 +3291,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3299,7 +3299,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3497,7 +3497,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3505,7 +3505,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3639,7 +3639,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3647,7 +3647,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -3845,7 +3845,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3853,7 +3853,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -3987,7 +3987,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -3995,7 +3995,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -4193,7 +4193,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4201,7 +4201,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4335,7 +4335,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4343,7 +4343,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -4541,7 +4541,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4549,7 +4549,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -4683,7 +4683,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4691,7 +4691,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -4889,7 +4889,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -4897,7 +4897,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5031,7 +5031,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5039,7 +5039,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -5237,7 +5237,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5245,7 +5245,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5379,7 +5379,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5387,7 +5387,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -5585,7 +5585,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5593,7 +5593,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -5727,7 +5727,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5735,7 +5735,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -5933,7 +5933,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -5941,7 +5941,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6075,7 +6075,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6083,7 +6083,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -6281,7 +6281,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6289,7 +6289,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6423,7 +6423,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6431,7 +6431,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -6629,7 +6629,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6637,7 +6637,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -6771,7 +6771,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6779,7 +6779,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -6977,7 +6977,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -6985,7 +6985,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7119,7 +7119,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7127,7 +7127,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -7325,7 +7325,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7333,7 +7333,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7467,7 +7467,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7475,7 +7475,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -7673,7 +7673,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7681,7 +7681,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -7815,7 +7815,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -7823,7 +7823,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -8021,7 +8021,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8029,7 +8029,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8163,7 +8163,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8171,7 +8171,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -8369,7 +8369,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8377,7 +8377,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8511,7 +8511,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8519,7 +8519,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -8717,7 +8717,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8725,7 +8725,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -8859,7 +8859,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -8867,7 +8867,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -9065,7 +9065,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9073,7 +9073,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9207,7 +9207,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9215,7 +9215,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -9413,7 +9413,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9421,7 +9421,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9555,7 +9555,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9563,7 +9563,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -9761,7 +9761,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9769,7 +9769,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9903,7 +9903,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -9911,7 +9911,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -10109,7 +10109,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -10117,7 +10117,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -10251,7 +10251,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -10259,7 +10259,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -10457,7 +10457,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -10465,7 +10465,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -10599,7 +10599,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -10607,7 +10607,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"solid": {
|
||||
@ -10805,7 +10805,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -10813,7 +10813,7 @@ description: Variables in memory after executing ssi_pattern.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -141,7 +141,7 @@ description: Variables in memory after executing subtract_cylinder_from_cube.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -149,7 +149,7 @@ description: Variables in memory after executing subtract_cylinder_from_cube.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -321,7 +321,7 @@ description: Variables in memory after executing subtract_cylinder_from_cube.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -329,7 +329,7 @@ description: Variables in memory after executing subtract_cylinder_from_cube.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -429,7 +429,7 @@ description: Variables in memory after executing subtract_cylinder_from_cube.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -437,7 +437,7 @@ description: Variables in memory after executing subtract_cylinder_from_cube.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -141,7 +141,7 @@ description: Variables in memory after executing subtract_doesnt_need_brackets.k
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -149,7 +149,7 @@ description: Variables in memory after executing subtract_doesnt_need_brackets.k
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -321,7 +321,7 @@ description: Variables in memory after executing subtract_doesnt_need_brackets.k
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -329,7 +329,7 @@ description: Variables in memory after executing subtract_doesnt_need_brackets.k
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -501,7 +501,7 @@ description: Variables in memory after executing subtract_doesnt_need_brackets.k
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -509,7 +509,7 @@ description: Variables in memory after executing subtract_doesnt_need_brackets.k
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -103,7 +103,7 @@ description: Variables in memory after executing tangent_to_3_point_arc.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -111,7 +111,7 @@ description: Variables in memory after executing tangent_to_3_point_arc.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -170,7 +170,7 @@ description: Variables in memory after executing tangent_to_3_point_arc.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -178,7 +178,7 @@ description: Variables in memory after executing tangent_to_3_point_arc.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -117,7 +117,7 @@ description: Variables in memory after executing tangential_arc.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -125,7 +125,7 @@ description: Variables in memory after executing tangential_arc.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -141,7 +141,7 @@ description: Variables in memory after executing union_cubes.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -149,7 +149,7 @@ description: Variables in memory after executing union_cubes.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -321,7 +321,7 @@ description: Variables in memory after executing union_cubes.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -329,7 +329,7 @@ description: Variables in memory after executing union_cubes.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -501,7 +501,7 @@ description: Variables in memory after executing union_cubes.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -509,7 +509,7 @@ description: Variables in memory after executing union_cubes.kcl
|
||||
"y": 1.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -112,7 +112,7 @@ description: Variables in memory after executing xz_plane.kcl
|
||||
"y": 0.0,
|
||||
"z": 0.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
},
|
||||
"yAxis": {
|
||||
@ -120,7 +120,7 @@ description: Variables in memory after executing xz_plane.kcl
|
||||
"y": 0.0,
|
||||
"z": 1.0,
|
||||
"units": {
|
||||
"type": "Mm"
|
||||
"type": "Unknown"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user