Add kclVersion as a field of the setting attribute (#6689)
Signed-off-by: Nick Cameron <nrc@ncameron.org>
This commit is contained in:
@ -7,7 +7,7 @@ use kittycad_modeling_cmds::coord::{System, KITTYCAD, OPENGL, VULKAN};
|
||||
use crate::{
|
||||
errors::KclErrorDetails,
|
||||
execution::types::{UnitAngle, UnitLen},
|
||||
parsing::ast::types::{Annotation, Expr, Node, ObjectProperty},
|
||||
parsing::ast::types::{Annotation, Expr, LiteralValue, Node, ObjectProperty},
|
||||
KclError, SourceRange,
|
||||
};
|
||||
|
||||
@ -17,6 +17,7 @@ pub(super) const SIGNIFICANT_ATTRS: [&str; 2] = [SETTINGS, NO_PRELUDE];
|
||||
pub(crate) const SETTINGS: &str = "settings";
|
||||
pub(crate) const SETTINGS_UNIT_LENGTH: &str = "defaultLengthUnit";
|
||||
pub(crate) const SETTINGS_UNIT_ANGLE: &str = "defaultAngleUnit";
|
||||
pub(crate) const SETTINGS_VERSION: &str = "kclVersion";
|
||||
pub(super) const NO_PRELUDE: &str = "no_std";
|
||||
|
||||
pub(super) const IMPORT_FORMAT: &str = "format";
|
||||
@ -53,7 +54,7 @@ impl FromStr for Impl {
|
||||
}
|
||||
|
||||
pub(crate) fn settings_completion_text() -> String {
|
||||
format!("@{SETTINGS}({SETTINGS_UNIT_LENGTH} = mm, {SETTINGS_UNIT_ANGLE} = deg)")
|
||||
format!("@{SETTINGS}({SETTINGS_UNIT_LENGTH} = mm, {SETTINGS_UNIT_ANGLE} = deg, {SETTINGS_VERSION} = 1.0)")
|
||||
}
|
||||
|
||||
pub(super) fn is_significant(attr: &&Node<Annotation>) -> bool {
|
||||
@ -89,6 +90,20 @@ pub(super) fn expect_ident(expr: &Expr) -> Result<&str, KclError> {
|
||||
}))
|
||||
}
|
||||
|
||||
// Returns the unparsed number literal.
|
||||
pub(super) fn expect_number(expr: &Expr) -> Result<String, KclError> {
|
||||
if let Expr::Literal(lit) = expr {
|
||||
if let LiteralValue::Number { .. } = &lit.value {
|
||||
return Ok(lit.raw.clone());
|
||||
}
|
||||
}
|
||||
|
||||
Err(KclError::Semantic(KclErrorDetails {
|
||||
message: "Unexpected settings value, expected a number, e.g., `1.0`".to_owned(),
|
||||
source_ranges: vec![expr.into()],
|
||||
}))
|
||||
}
|
||||
|
||||
pub(super) fn get_impl(annotations: &[Node<Annotation>], source_range: SourceRange) -> Result<Option<Impl>, KclError> {
|
||||
for attr in annotations {
|
||||
if attr.name.is_some() || attr.properties.is_none() {
|
||||
|
||||
@ -336,6 +336,7 @@ impl ModuleState {
|
||||
settings: MetaSettings {
|
||||
default_length_units: Default::default(),
|
||||
default_angle_units: Default::default(),
|
||||
kcl_version: "0.1".to_owned(),
|
||||
},
|
||||
}
|
||||
}
|
||||
@ -347,6 +348,7 @@ impl ModuleState {
|
||||
pub struct MetaSettings {
|
||||
pub default_length_units: types::UnitLen,
|
||||
pub default_angle_units: types::UnitAngle,
|
||||
pub kcl_version: String,
|
||||
}
|
||||
|
||||
impl MetaSettings {
|
||||
@ -370,6 +372,10 @@ impl MetaSettings {
|
||||
let value = types::UnitAngle::from_str(value, annotation.as_source_range())?;
|
||||
self.default_angle_units = value;
|
||||
}
|
||||
annotations::SETTINGS_VERSION => {
|
||||
let value = annotations::expect_number(&p.inner.value)?;
|
||||
self.kcl_version = value;
|
||||
}
|
||||
name => {
|
||||
return Err(KclError::Semantic(KclErrorDetails {
|
||||
message: format!(
|
||||
|
||||
@ -88,7 +88,9 @@ pub use errors::{
|
||||
CompilationError, ConnectionError, ExecError, KclError, KclErrorWithOutputs, Report, ReportWithOutputs,
|
||||
};
|
||||
pub use execution::{
|
||||
bust_cache, clear_mem_cache, ExecOutcome, ExecState, ExecutorContext, ExecutorSettings, MetaSettings, Point2d,
|
||||
bust_cache, clear_mem_cache,
|
||||
types::{UnitAngle, UnitLen},
|
||||
ExecOutcome, ExecState, ExecutorContext, ExecutorSettings, MetaSettings, Point2d,
|
||||
};
|
||||
pub use lsp::{
|
||||
copilot::Backend as CopilotLspBackend,
|
||||
@ -217,9 +219,13 @@ impl Program {
|
||||
}
|
||||
|
||||
/// Change the meta settings for the kcl file.
|
||||
pub fn change_meta_settings(&self, settings: crate::MetaSettings) -> Result<Self, KclError> {
|
||||
pub fn change_default_units(
|
||||
&self,
|
||||
length_units: Option<execution::types::UnitLen>,
|
||||
angle_units: Option<execution::types::UnitAngle>,
|
||||
) -> Result<Self, KclError> {
|
||||
Ok(Self {
|
||||
ast: self.ast.change_meta_settings(settings)?,
|
||||
ast: self.ast.change_default_units(length_units, angle_units)?,
|
||||
original_file_contents: self.original_file_contents.clone(),
|
||||
})
|
||||
}
|
||||
|
||||
@ -27,7 +27,11 @@ pub use crate::parsing::ast::types::{
|
||||
use crate::{
|
||||
docs::StdLibFn,
|
||||
errors::KclError,
|
||||
execution::{annotations, types::ArrayLen, KclValue, Metadata, TagIdentifier},
|
||||
execution::{
|
||||
annotations,
|
||||
types::{ArrayLen, UnitAngle, UnitLen},
|
||||
KclValue, Metadata, TagIdentifier,
|
||||
},
|
||||
parsing::{ast::digest::Digest, token::NumericSuffix, PIPE_OPERATOR},
|
||||
source_range::SourceRange,
|
||||
ModuleId,
|
||||
@ -354,12 +358,28 @@ impl Node<Program> {
|
||||
Ok(None)
|
||||
}
|
||||
|
||||
pub fn change_meta_settings(&self, settings: crate::execution::MetaSettings) -> Result<Self, KclError> {
|
||||
pub fn change_default_units(
|
||||
&self,
|
||||
length_units: Option<UnitLen>,
|
||||
angle_units: Option<UnitAngle>,
|
||||
) -> Result<Self, KclError> {
|
||||
let mut new_program = self.clone();
|
||||
let mut found = false;
|
||||
for node in &mut new_program.inner_attrs {
|
||||
if node.name() == Some(annotations::SETTINGS) {
|
||||
node.inner = Annotation::new_from_meta_settings(&settings);
|
||||
if let Some(len) = length_units {
|
||||
node.inner.add_or_update(
|
||||
annotations::SETTINGS_UNIT_LENGTH,
|
||||
Expr::Name(Box::new(Name::new(&len.to_string()))),
|
||||
);
|
||||
}
|
||||
if let Some(angle) = angle_units {
|
||||
node.inner.add_or_update(
|
||||
annotations::SETTINGS_UNIT_ANGLE,
|
||||
Expr::Name(Box::new(Name::new(&angle.to_string()))),
|
||||
);
|
||||
}
|
||||
|
||||
// Previous source range no longer makes sense, but we want to
|
||||
// preserve other things like comments.
|
||||
node.reset_source();
|
||||
@ -369,9 +389,21 @@ impl Node<Program> {
|
||||
}
|
||||
|
||||
if !found {
|
||||
new_program
|
||||
.inner_attrs
|
||||
.push(Node::no_src(Annotation::new_from_meta_settings(&settings)));
|
||||
let mut settings = Annotation::new(annotations::SETTINGS);
|
||||
if let Some(len) = length_units {
|
||||
settings.inner.add_or_update(
|
||||
annotations::SETTINGS_UNIT_LENGTH,
|
||||
Expr::Name(Box::new(Name::new(&len.to_string()))),
|
||||
);
|
||||
}
|
||||
if let Some(angle) = angle_units {
|
||||
settings.inner.add_or_update(
|
||||
annotations::SETTINGS_UNIT_ANGLE,
|
||||
Expr::Name(Box::new(Name::new(&angle.to_string()))),
|
||||
);
|
||||
}
|
||||
|
||||
new_program.inner_attrs.push(settings);
|
||||
}
|
||||
|
||||
Ok(new_program)
|
||||
@ -1536,6 +1568,15 @@ pub struct Annotation {
|
||||
}
|
||||
|
||||
impl Annotation {
|
||||
// Creates a named annotation with an empty (but present) property list, `@name()`.
|
||||
pub fn new(name: &str) -> Node<Self> {
|
||||
Node::no_src(Annotation {
|
||||
name: Some(Identifier::new(name)),
|
||||
properties: Some(vec![]),
|
||||
digest: None,
|
||||
})
|
||||
}
|
||||
|
||||
pub fn is_inner(&self) -> bool {
|
||||
self.name.is_some()
|
||||
}
|
||||
@ -1544,22 +1585,16 @@ impl Annotation {
|
||||
self.name.as_ref().map(|n| &*n.name)
|
||||
}
|
||||
|
||||
pub fn new_from_meta_settings(settings: &crate::execution::MetaSettings) -> Annotation {
|
||||
let mut properties: Vec<Node<ObjectProperty>> = vec![ObjectProperty::new(
|
||||
Identifier::new(annotations::SETTINGS_UNIT_LENGTH),
|
||||
Expr::Name(Box::new(Name::new(&settings.default_length_units.to_string()))),
|
||||
)];
|
||||
|
||||
if settings.default_angle_units != Default::default() {
|
||||
properties.push(ObjectProperty::new(
|
||||
Identifier::new(annotations::SETTINGS_UNIT_ANGLE),
|
||||
Expr::Name(Box::new(Name::new(&settings.default_angle_units.to_string()))),
|
||||
));
|
||||
}
|
||||
Annotation {
|
||||
name: Some(Identifier::new(annotations::SETTINGS)),
|
||||
properties: Some(properties),
|
||||
digest: None,
|
||||
pub(crate) fn add_or_update(&mut self, label: &str, value: Expr) {
|
||||
match &mut self.properties {
|
||||
Some(props) => match props.iter_mut().find(|p| p.key.name == label) {
|
||||
Some(p) => {
|
||||
p.value = value;
|
||||
p.digest = None;
|
||||
}
|
||||
None => props.push(ObjectProperty::new(Identifier::new(label), value)),
|
||||
},
|
||||
None => self.properties = Some(vec![ObjectProperty::new(Identifier::new(label), value)]),
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -4136,10 +4171,7 @@ startSketchOn(XY)"#;
|
||||
|
||||
// Edit the ast.
|
||||
let new_program = program
|
||||
.change_meta_settings(crate::execution::MetaSettings {
|
||||
default_length_units: crate::execution::types::UnitLen::Mm,
|
||||
..Default::default()
|
||||
})
|
||||
.change_default_units(Some(crate::execution::types::UnitLen::Mm), None)
|
||||
.unwrap();
|
||||
|
||||
let result = new_program.meta_settings().unwrap();
|
||||
@ -4168,10 +4200,7 @@ startSketchOn(XY)
|
||||
|
||||
// Edit the ast.
|
||||
let new_program = program
|
||||
.change_meta_settings(crate::execution::MetaSettings {
|
||||
default_length_units: crate::execution::types::UnitLen::Mm,
|
||||
..Default::default()
|
||||
})
|
||||
.change_default_units(Some(crate::execution::types::UnitLen::Mm), None)
|
||||
.unwrap();
|
||||
|
||||
let result = new_program.meta_settings().unwrap();
|
||||
@ -4206,10 +4235,7 @@ startSketchOn(XY)
|
||||
let program = crate::parsing::top_level_parse(code).unwrap();
|
||||
|
||||
let new_program = program
|
||||
.change_meta_settings(crate::execution::MetaSettings {
|
||||
default_length_units: crate::execution::types::UnitLen::Cm,
|
||||
..Default::default()
|
||||
})
|
||||
.change_default_units(Some(crate::execution::types::UnitLen::Cm), None)
|
||||
.unwrap();
|
||||
|
||||
let result = new_program.meta_settings().unwrap();
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
@no_std
|
||||
@settings(defaultLengthUnit = mm)
|
||||
@settings(defaultLengthUnit = mm, kclVersion = 1.0)
|
||||
|
||||
import Point2d from "std::types"
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
@no_std
|
||||
@settings(defaultLengthUnit = mm)
|
||||
@settings(defaultLengthUnit = mm, kclVersion = 1.0)
|
||||
|
||||
// Note that everything in the prelude is treated as exported.
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
@no_std
|
||||
@settings(defaultLengthUnit = mm)
|
||||
@settings(defaultLengthUnit = mm, kclVersion = 1.0)
|
||||
|
||||
/// Construct a 2-dimensional circle, of the specified radius, centered at
|
||||
/// the provided (x, y) origin point.
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
@no_std
|
||||
@settings(defaultLengthUnit = mm)
|
||||
@settings(defaultLengthUnit = mm, kclVersion = 1.0)
|
||||
|
||||
import Face from "std::types"
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
@no_std
|
||||
@settings(defaultLengthUnit = mm, kclVersion = 1.0)
|
||||
|
||||
export ZERO = 0
|
||||
export QUARTER_TURN = 90deg
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
@no_std
|
||||
@settings(defaultLengthUnit = mm)
|
||||
@settings(defaultLengthUnit = mm, kclVersion = 1.0)
|
||||
|
||||
/// Any value.
|
||||
@(impl = primitive)
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
@no_std
|
||||
@settings(defaultLengthUnit = mm)
|
||||
@settings(defaultLengthUnit = mm, kclVersion = 1.0)
|
||||
|
||||
/// Convert a number to millimeters from its current units.
|
||||
export fn toMillimeters(@num: number(mm)): number(mm) {
|
||||
|
||||
@ -1,81 +1,81 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path2 [Path]
|
||||
2["Path<br>[349, 446, 0]"]
|
||||
4["Segment<br>[454, 518, 0]"]
|
||||
5["Segment<br>[526, 594, 0]"]
|
||||
6["Segment<br>[602, 634, 0]"]
|
||||
7["Segment<br>[642, 710, 0]"]
|
||||
8["Segment<br>[718, 765, 0]"]
|
||||
9["Segment<br>[773, 821, 0]"]
|
||||
10["Segment<br>[829, 878, 0]"]
|
||||
11["Segment<br>[886, 984, 0]"]
|
||||
12["Segment<br>[992, 1040, 0]"]
|
||||
13["Segment<br>[1048, 1137, 0]"]
|
||||
14["Segment<br>[1145, 1194, 0]"]
|
||||
15["Segment<br>[1202, 1251, 0]"]
|
||||
16["Segment<br>[1259, 1292, 0]"]
|
||||
17["Segment<br>[1300, 1368, 0]"]
|
||||
18["Segment<br>[1376, 1408, 0]"]
|
||||
19["Segment<br>[1416, 1484, 0]"]
|
||||
20["Segment<br>[1492, 1554, 0]"]
|
||||
21["Segment<br>[1595, 1664, 0]"]
|
||||
22["Segment<br>[1672, 1704, 0]"]
|
||||
23["Segment<br>[1712, 1781, 0]"]
|
||||
24["Segment<br>[1789, 1836, 0]"]
|
||||
25["Segment<br>[1844, 1894, 0]"]
|
||||
26["Segment<br>[1902, 1952, 0]"]
|
||||
27["Segment<br>[1970, 2080, 0]"]
|
||||
28["Segment<br>[2098, 2147, 0]"]
|
||||
29["Segment<br>[2161, 2256, 0]"]
|
||||
30["Segment<br>[2270, 2320, 0]"]
|
||||
31["Segment<br>[2334, 2383, 0]"]
|
||||
32["Segment<br>[2391, 2424, 0]"]
|
||||
33["Segment<br>[2432, 2501, 0]"]
|
||||
34["Segment<br>[2509, 2541, 0]"]
|
||||
35["Segment<br>[2549, 2618, 0]"]
|
||||
36["Segment<br>[2659, 2720, 0]"]
|
||||
37["Segment<br>[2728, 2797, 0]"]
|
||||
38["Segment<br>[2805, 2838, 0]"]
|
||||
39["Segment<br>[2846, 2915, 0]"]
|
||||
40["Segment<br>[2923, 2972, 0]"]
|
||||
41["Segment<br>[2980, 3030, 0]"]
|
||||
42["Segment<br>[3038, 3087, 0]"]
|
||||
43["Segment<br>[3095, 3204, 0]"]
|
||||
44["Segment<br>[3212, 3262, 0]"]
|
||||
45["Segment<br>[3270, 3366, 0]"]
|
||||
46["Segment<br>[3374, 3423, 0]"]
|
||||
47["Segment<br>[3431, 3480, 0]"]
|
||||
48["Segment<br>[3488, 3522, 0]"]
|
||||
49["Segment<br>[3530, 3599, 0]"]
|
||||
50["Segment<br>[3607, 3640, 0]"]
|
||||
51["Segment<br>[3648, 3717, 0]"]
|
||||
52["Segment<br>[3725, 3788, 0]"]
|
||||
53["Segment<br>[3829, 3898, 0]"]
|
||||
54["Segment<br>[3906, 3939, 0]"]
|
||||
55["Segment<br>[3947, 4016, 0]"]
|
||||
56["Segment<br>[4024, 4073, 0]"]
|
||||
57["Segment<br>[4081, 4130, 0]"]
|
||||
58["Segment<br>[4138, 4187, 0]"]
|
||||
59["Segment<br>[4195, 4295, 0]"]
|
||||
60["Segment<br>[4303, 4353, 0]"]
|
||||
61["Segment<br>[4361, 4450, 0]"]
|
||||
62["Segment<br>[4458, 4507, 0]"]
|
||||
63["Segment<br>[4515, 4565, 0]"]
|
||||
64["Segment<br>[4573, 4607, 0]"]
|
||||
65["Segment<br>[4615, 4684, 0]"]
|
||||
66["Segment<br>[4692, 4725, 0]"]
|
||||
67["Segment<br>[4733, 4802, 0]"]
|
||||
68["Segment<br>[4810, 4817, 0]"]
|
||||
2["Path<br>[367, 464, 0]"]
|
||||
4["Segment<br>[472, 536, 0]"]
|
||||
5["Segment<br>[544, 612, 0]"]
|
||||
6["Segment<br>[620, 652, 0]"]
|
||||
7["Segment<br>[660, 728, 0]"]
|
||||
8["Segment<br>[736, 783, 0]"]
|
||||
9["Segment<br>[791, 839, 0]"]
|
||||
10["Segment<br>[847, 896, 0]"]
|
||||
11["Segment<br>[904, 1002, 0]"]
|
||||
12["Segment<br>[1010, 1058, 0]"]
|
||||
13["Segment<br>[1066, 1155, 0]"]
|
||||
14["Segment<br>[1163, 1212, 0]"]
|
||||
15["Segment<br>[1220, 1269, 0]"]
|
||||
16["Segment<br>[1277, 1310, 0]"]
|
||||
17["Segment<br>[1318, 1386, 0]"]
|
||||
18["Segment<br>[1394, 1426, 0]"]
|
||||
19["Segment<br>[1434, 1502, 0]"]
|
||||
20["Segment<br>[1510, 1572, 0]"]
|
||||
21["Segment<br>[1613, 1682, 0]"]
|
||||
22["Segment<br>[1690, 1722, 0]"]
|
||||
23["Segment<br>[1730, 1799, 0]"]
|
||||
24["Segment<br>[1807, 1854, 0]"]
|
||||
25["Segment<br>[1862, 1912, 0]"]
|
||||
26["Segment<br>[1920, 1970, 0]"]
|
||||
27["Segment<br>[1988, 2098, 0]"]
|
||||
28["Segment<br>[2116, 2165, 0]"]
|
||||
29["Segment<br>[2179, 2274, 0]"]
|
||||
30["Segment<br>[2288, 2338, 0]"]
|
||||
31["Segment<br>[2352, 2401, 0]"]
|
||||
32["Segment<br>[2409, 2442, 0]"]
|
||||
33["Segment<br>[2450, 2519, 0]"]
|
||||
34["Segment<br>[2527, 2559, 0]"]
|
||||
35["Segment<br>[2567, 2636, 0]"]
|
||||
36["Segment<br>[2677, 2738, 0]"]
|
||||
37["Segment<br>[2746, 2815, 0]"]
|
||||
38["Segment<br>[2823, 2856, 0]"]
|
||||
39["Segment<br>[2864, 2933, 0]"]
|
||||
40["Segment<br>[2941, 2990, 0]"]
|
||||
41["Segment<br>[2998, 3048, 0]"]
|
||||
42["Segment<br>[3056, 3105, 0]"]
|
||||
43["Segment<br>[3113, 3222, 0]"]
|
||||
44["Segment<br>[3230, 3280, 0]"]
|
||||
45["Segment<br>[3288, 3384, 0]"]
|
||||
46["Segment<br>[3392, 3441, 0]"]
|
||||
47["Segment<br>[3449, 3498, 0]"]
|
||||
48["Segment<br>[3506, 3540, 0]"]
|
||||
49["Segment<br>[3548, 3617, 0]"]
|
||||
50["Segment<br>[3625, 3658, 0]"]
|
||||
51["Segment<br>[3666, 3735, 0]"]
|
||||
52["Segment<br>[3743, 3806, 0]"]
|
||||
53["Segment<br>[3847, 3916, 0]"]
|
||||
54["Segment<br>[3924, 3957, 0]"]
|
||||
55["Segment<br>[3965, 4034, 0]"]
|
||||
56["Segment<br>[4042, 4091, 0]"]
|
||||
57["Segment<br>[4099, 4148, 0]"]
|
||||
58["Segment<br>[4156, 4205, 0]"]
|
||||
59["Segment<br>[4213, 4313, 0]"]
|
||||
60["Segment<br>[4321, 4371, 0]"]
|
||||
61["Segment<br>[4379, 4468, 0]"]
|
||||
62["Segment<br>[4476, 4525, 0]"]
|
||||
63["Segment<br>[4533, 4583, 0]"]
|
||||
64["Segment<br>[4591, 4625, 0]"]
|
||||
65["Segment<br>[4633, 4702, 0]"]
|
||||
66["Segment<br>[4710, 4743, 0]"]
|
||||
67["Segment<br>[4751, 4820, 0]"]
|
||||
68["Segment<br>[4828, 4835, 0]"]
|
||||
71[Solid2d]
|
||||
end
|
||||
subgraph path3 [Path]
|
||||
3["Path<br>[4881, 5059, 0]"]
|
||||
69["Segment<br>[4881, 5059, 0]"]
|
||||
3["Path<br>[4899, 5077, 0]"]
|
||||
69["Segment<br>[4899, 5077, 0]"]
|
||||
70[Solid2d]
|
||||
end
|
||||
1["Plane<br>[323, 341, 0]"]
|
||||
72["Sweep Extrusion<br>[5068, 5096, 0]"]
|
||||
1["Plane<br>[341, 359, 0]"]
|
||||
72["Sweep Extrusion<br>[5086, 5114, 0]"]
|
||||
73[Wall]
|
||||
74[Wall]
|
||||
75[Wall]
|
||||
@ -270,38 +270,38 @@ flowchart LR
|
||||
264["SweepEdge Adjacent"]
|
||||
265["SweepEdge Adjacent"]
|
||||
266["SweepEdge Adjacent"]
|
||||
267["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
268["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
269["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
270["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
271["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
272["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
273["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
274["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
275["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
276["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
277["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
278["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
279["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
280["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
281["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
282["EdgeCut Fillet<br>[5104, 5809, 0]"]
|
||||
283["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
284["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
285["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
286["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
287["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
288["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
289["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
290["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
291["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
292["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
293["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
294["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
295["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
296["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
297["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
298["EdgeCut Fillet<br>[5817, 6521, 0]"]
|
||||
267["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
268["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
269["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
270["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
271["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
272["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
273["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
274["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
275["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
276["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
277["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
278["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
279["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
280["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
281["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
282["EdgeCut Fillet<br>[5122, 5827, 0]"]
|
||||
283["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
284["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
285["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
286["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
287["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
288["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
289["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
290["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
291["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
292["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
293["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
294["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
295["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
296["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
297["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
298["EdgeCut Fillet<br>[5835, 6539, 0]"]
|
||||
1 --- 2
|
||||
1 --- 3
|
||||
2 --- 4
|
||||
|
||||
@ -9576,6 +9576,31 @@ description: Result of parsing 80-20-rail.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,183 +1,183 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[323, 370, 1]"]
|
||||
31["Segment<br>[376, 444, 1]"]
|
||||
32["Segment<br>[450, 550, 1]"]
|
||||
33["Segment<br>[556, 673, 1]"]
|
||||
34["Segment<br>[679, 764, 1]"]
|
||||
35["Segment<br>[770, 777, 1]"]
|
||||
8["Path<br>[341, 388, 1]"]
|
||||
31["Segment<br>[394, 462, 1]"]
|
||||
32["Segment<br>[468, 568, 1]"]
|
||||
33["Segment<br>[574, 691, 1]"]
|
||||
34["Segment<br>[697, 782, 1]"]
|
||||
35["Segment<br>[788, 795, 1]"]
|
||||
111[Solid2d]
|
||||
end
|
||||
subgraph path9 [Path]
|
||||
9["Path<br>[801, 836, 1]"]
|
||||
36["Segment<br>[801, 836, 1]"]
|
||||
9["Path<br>[819, 854, 1]"]
|
||||
36["Segment<br>[819, 854, 1]"]
|
||||
104[Solid2d]
|
||||
end
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[861, 1008, 1]"]
|
||||
37["Segment<br>[861, 1008, 1]"]
|
||||
10["Path<br>[879, 1026, 1]"]
|
||||
37["Segment<br>[879, 1026, 1]"]
|
||||
114[Solid2d]
|
||||
end
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[1033, 1181, 1]"]
|
||||
38["Segment<br>[1033, 1181, 1]"]
|
||||
11["Path<br>[1051, 1199, 1]"]
|
||||
38["Segment<br>[1051, 1199, 1]"]
|
||||
107[Solid2d]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[1206, 1354, 1]"]
|
||||
39["Segment<br>[1206, 1354, 1]"]
|
||||
12["Path<br>[1224, 1372, 1]"]
|
||||
39["Segment<br>[1224, 1372, 1]"]
|
||||
113[Solid2d]
|
||||
end
|
||||
subgraph path13 [Path]
|
||||
13["Path<br>[1379, 1528, 1]"]
|
||||
40["Segment<br>[1379, 1528, 1]"]
|
||||
13["Path<br>[1397, 1546, 1]"]
|
||||
40["Segment<br>[1397, 1546, 1]"]
|
||||
116[Solid2d]
|
||||
end
|
||||
subgraph path14 [Path]
|
||||
14["Path<br>[1696, 1752, 1]"]
|
||||
41["Segment<br>[1758, 1823, 1]"]
|
||||
42["Segment<br>[1829, 1881, 1]"]
|
||||
43["Segment<br>[1887, 1938, 1]"]
|
||||
44["Segment<br>[1944, 1996, 1]"]
|
||||
45["Segment<br>[2002, 2068, 1]"]
|
||||
46["Segment<br>[2074, 2126, 1]"]
|
||||
47["Segment<br>[2132, 2164, 1]"]
|
||||
48["Segment<br>[2170, 2235, 1]"]
|
||||
49["Segment<br>[2241, 2248, 1]"]
|
||||
14["Path<br>[1714, 1770, 1]"]
|
||||
41["Segment<br>[1776, 1841, 1]"]
|
||||
42["Segment<br>[1847, 1899, 1]"]
|
||||
43["Segment<br>[1905, 1956, 1]"]
|
||||
44["Segment<br>[1962, 2014, 1]"]
|
||||
45["Segment<br>[2020, 2086, 1]"]
|
||||
46["Segment<br>[2092, 2144, 1]"]
|
||||
47["Segment<br>[2150, 2182, 1]"]
|
||||
48["Segment<br>[2188, 2253, 1]"]
|
||||
49["Segment<br>[2259, 2266, 1]"]
|
||||
101[Solid2d]
|
||||
end
|
||||
subgraph path15 [Path]
|
||||
15["Path<br>[2597, 2710, 1]"]
|
||||
50["Segment<br>[2716, 2771, 1]"]
|
||||
51["Segment<br>[2777, 2812, 1]"]
|
||||
52["Segment<br>[2818, 2873, 1]"]
|
||||
53["Segment<br>[2879, 2915, 1]"]
|
||||
54["Segment<br>[2921, 2976, 1]"]
|
||||
55["Segment<br>[2982, 3018, 1]"]
|
||||
56["Segment<br>[3024, 3079, 1]"]
|
||||
57["Segment<br>[3085, 3141, 1]"]
|
||||
15["Path<br>[2615, 2728, 1]"]
|
||||
50["Segment<br>[2734, 2789, 1]"]
|
||||
51["Segment<br>[2795, 2830, 1]"]
|
||||
52["Segment<br>[2836, 2891, 1]"]
|
||||
53["Segment<br>[2897, 2933, 1]"]
|
||||
54["Segment<br>[2939, 2994, 1]"]
|
||||
55["Segment<br>[3000, 3036, 1]"]
|
||||
56["Segment<br>[3042, 3097, 1]"]
|
||||
57["Segment<br>[3103, 3159, 1]"]
|
||||
end
|
||||
subgraph path16 [Path]
|
||||
16["Path<br>[3290, 3341, 1]"]
|
||||
58["Segment<br>[3290, 3341, 1]"]
|
||||
16["Path<br>[3308, 3359, 1]"]
|
||||
58["Segment<br>[3308, 3359, 1]"]
|
||||
97[Solid2d]
|
||||
end
|
||||
subgraph path17 [Path]
|
||||
17["Path<br>[3520, 3582, 1]"]
|
||||
59["Segment<br>[3588, 3656, 1]"]
|
||||
60["Segment<br>[3662, 3762, 1]"]
|
||||
61["Segment<br>[3768, 3885, 1]"]
|
||||
62["Segment<br>[3891, 3976, 1]"]
|
||||
63["Segment<br>[3982, 3989, 1]"]
|
||||
17["Path<br>[3538, 3600, 1]"]
|
||||
59["Segment<br>[3606, 3674, 1]"]
|
||||
60["Segment<br>[3680, 3780, 1]"]
|
||||
61["Segment<br>[3786, 3903, 1]"]
|
||||
62["Segment<br>[3909, 3994, 1]"]
|
||||
63["Segment<br>[4000, 4007, 1]"]
|
||||
115[Solid2d]
|
||||
end
|
||||
subgraph path18 [Path]
|
||||
18["Path<br>[4013, 4064, 1]"]
|
||||
64["Segment<br>[4013, 4064, 1]"]
|
||||
18["Path<br>[4031, 4082, 1]"]
|
||||
64["Segment<br>[4031, 4082, 1]"]
|
||||
118[Solid2d]
|
||||
end
|
||||
subgraph path19 [Path]
|
||||
19["Path<br>[4089, 4236, 1]"]
|
||||
65["Segment<br>[4089, 4236, 1]"]
|
||||
19["Path<br>[4107, 4254, 1]"]
|
||||
65["Segment<br>[4107, 4254, 1]"]
|
||||
100[Solid2d]
|
||||
end
|
||||
subgraph path20 [Path]
|
||||
20["Path<br>[4261, 4409, 1]"]
|
||||
66["Segment<br>[4261, 4409, 1]"]
|
||||
20["Path<br>[4279, 4427, 1]"]
|
||||
66["Segment<br>[4279, 4427, 1]"]
|
||||
98[Solid2d]
|
||||
end
|
||||
subgraph path21 [Path]
|
||||
21["Path<br>[4434, 4582, 1]"]
|
||||
67["Segment<br>[4434, 4582, 1]"]
|
||||
21["Path<br>[4452, 4600, 1]"]
|
||||
67["Segment<br>[4452, 4600, 1]"]
|
||||
103[Solid2d]
|
||||
end
|
||||
subgraph path22 [Path]
|
||||
22["Path<br>[4607, 4756, 1]"]
|
||||
68["Segment<br>[4607, 4756, 1]"]
|
||||
22["Path<br>[4625, 4774, 1]"]
|
||||
68["Segment<br>[4625, 4774, 1]"]
|
||||
106[Solid2d]
|
||||
end
|
||||
subgraph path23 [Path]
|
||||
23["Path<br>[4898, 4936, 1]"]
|
||||
69["Segment<br>[4898, 4936, 1]"]
|
||||
23["Path<br>[4916, 4954, 1]"]
|
||||
69["Segment<br>[4916, 4954, 1]"]
|
||||
117[Solid2d]
|
||||
end
|
||||
subgraph path24 [Path]
|
||||
24["Path<br>[5009, 5045, 1]"]
|
||||
70["Segment<br>[5009, 5045, 1]"]
|
||||
24["Path<br>[5027, 5063, 1]"]
|
||||
70["Segment<br>[5027, 5063, 1]"]
|
||||
99[Solid2d]
|
||||
end
|
||||
subgraph path25 [Path]
|
||||
25["Path<br>[277, 327, 3]"]
|
||||
71["Segment<br>[277, 327, 3]"]
|
||||
25["Path<br>[295, 345, 3]"]
|
||||
71["Segment<br>[295, 345, 3]"]
|
||||
105[Solid2d]
|
||||
end
|
||||
subgraph path26 [Path]
|
||||
26["Path<br>[502, 537, 3]"]
|
||||
72["Segment<br>[502, 537, 3]"]
|
||||
26["Path<br>[520, 555, 3]"]
|
||||
72["Segment<br>[520, 555, 3]"]
|
||||
102[Solid2d]
|
||||
end
|
||||
subgraph path27 [Path]
|
||||
27["Path<br>[216, 255, 4]"]
|
||||
73["Segment<br>[261, 291, 4]"]
|
||||
74["Segment<br>[297, 336, 4]"]
|
||||
75["Segment<br>[342, 366, 4]"]
|
||||
76["Segment<br>[372, 396, 4]"]
|
||||
77["Segment<br>[402, 443, 4]"]
|
||||
78["Segment<br>[449, 487, 4]"]
|
||||
79["Segment<br>[493, 516, 4]"]
|
||||
80["Segment<br>[522, 539, 4]"]
|
||||
81["Segment<br>[545, 566, 4]"]
|
||||
82["Segment<br>[572, 659, 4]"]
|
||||
83["Segment<br>[665, 702, 4]"]
|
||||
84["Segment<br>[708, 745, 4]"]
|
||||
85["Segment<br>[751, 758, 4]"]
|
||||
27["Path<br>[234, 273, 4]"]
|
||||
73["Segment<br>[279, 309, 4]"]
|
||||
74["Segment<br>[315, 354, 4]"]
|
||||
75["Segment<br>[360, 384, 4]"]
|
||||
76["Segment<br>[390, 414, 4]"]
|
||||
77["Segment<br>[420, 461, 4]"]
|
||||
78["Segment<br>[467, 505, 4]"]
|
||||
79["Segment<br>[511, 534, 4]"]
|
||||
80["Segment<br>[540, 557, 4]"]
|
||||
81["Segment<br>[563, 584, 4]"]
|
||||
82["Segment<br>[590, 677, 4]"]
|
||||
83["Segment<br>[683, 720, 4]"]
|
||||
84["Segment<br>[726, 763, 4]"]
|
||||
85["Segment<br>[769, 776, 4]"]
|
||||
112[Solid2d]
|
||||
end
|
||||
subgraph path28 [Path]
|
||||
28["Path<br>[1113, 1203, 4]"]
|
||||
86["Segment<br>[1211, 1280, 4]"]
|
||||
88["Segment<br>[1288, 1588, 4]"]
|
||||
90["Segment<br>[1596, 1898, 4]"]
|
||||
92["Segment<br>[1906, 2125, 4]"]
|
||||
96["Segment<br>[2133, 2140, 4]"]
|
||||
28["Path<br>[1131, 1221, 4]"]
|
||||
86["Segment<br>[1229, 1298, 4]"]
|
||||
88["Segment<br>[1306, 1606, 4]"]
|
||||
90["Segment<br>[1614, 1916, 4]"]
|
||||
92["Segment<br>[1924, 2143, 4]"]
|
||||
96["Segment<br>[2151, 2158, 4]"]
|
||||
108[Solid2d]
|
||||
end
|
||||
subgraph path29 [Path]
|
||||
29["Path<br>[1113, 1203, 4]"]
|
||||
95["Segment<br>[2133, 2140, 4]"]
|
||||
29["Path<br>[1131, 1221, 4]"]
|
||||
95["Segment<br>[2151, 2158, 4]"]
|
||||
109[Solid2d]
|
||||
end
|
||||
subgraph path30 [Path]
|
||||
30["Path<br>[1113, 1203, 4]"]
|
||||
87["Segment<br>[1211, 1280, 4]"]
|
||||
89["Segment<br>[1288, 1588, 4]"]
|
||||
91["Segment<br>[1596, 1898, 4]"]
|
||||
93["Segment<br>[1906, 2125, 4]"]
|
||||
94["Segment<br>[2133, 2140, 4]"]
|
||||
30["Path<br>[1131, 1221, 4]"]
|
||||
87["Segment<br>[1229, 1298, 4]"]
|
||||
89["Segment<br>[1306, 1606, 4]"]
|
||||
91["Segment<br>[1614, 1916, 4]"]
|
||||
93["Segment<br>[1924, 2143, 4]"]
|
||||
94["Segment<br>[2151, 2158, 4]"]
|
||||
110[Solid2d]
|
||||
end
|
||||
1["Plane<br>[300, 317, 1]"]
|
||||
2["Plane<br>[204, 231, 3]"]
|
||||
3["Plane<br>[467, 495, 3]"]
|
||||
4["Plane<br>[193, 210, 4]"]
|
||||
5["Plane<br>[1066, 1104, 4]"]
|
||||
6["Plane<br>[1066, 1104, 4]"]
|
||||
7["Plane<br>[1066, 1104, 4]"]
|
||||
119["Sweep Extrusion<br>[1535, 1554, 1]"]
|
||||
120["Sweep Extrusion<br>[2388, 2408, 1]"]
|
||||
121["Sweep Extrusion<br>[2388, 2408, 1]"]
|
||||
122["Sweep Extrusion<br>[2388, 2408, 1]"]
|
||||
123["Sweep Extrusion<br>[2388, 2408, 1]"]
|
||||
124["Sweep Extrusion<br>[3147, 3182, 1]"]
|
||||
125["Sweep Extrusion<br>[3347, 3385, 1]"]
|
||||
126["Sweep Extrusion<br>[4763, 4782, 1]"]
|
||||
127["Sweep Extrusion<br>[4942, 4962, 1]"]
|
||||
128["Sweep Extrusion<br>[5051, 5072, 1]"]
|
||||
129["Sweep Extrusion<br>[333, 353, 3]"]
|
||||
130["Sweep Extrusion<br>[543, 564, 3]"]
|
||||
131["Sweep Revolve<br>[764, 846, 4]"]
|
||||
132["Sweep Loft<br>[2454, 2473, 4]"]
|
||||
1["Plane<br>[318, 335, 1]"]
|
||||
2["Plane<br>[222, 249, 3]"]
|
||||
3["Plane<br>[485, 513, 3]"]
|
||||
4["Plane<br>[211, 228, 4]"]
|
||||
5["Plane<br>[1084, 1122, 4]"]
|
||||
6["Plane<br>[1084, 1122, 4]"]
|
||||
7["Plane<br>[1084, 1122, 4]"]
|
||||
119["Sweep Extrusion<br>[1553, 1572, 1]"]
|
||||
120["Sweep Extrusion<br>[2406, 2426, 1]"]
|
||||
121["Sweep Extrusion<br>[2406, 2426, 1]"]
|
||||
122["Sweep Extrusion<br>[2406, 2426, 1]"]
|
||||
123["Sweep Extrusion<br>[2406, 2426, 1]"]
|
||||
124["Sweep Extrusion<br>[3165, 3200, 1]"]
|
||||
125["Sweep Extrusion<br>[3365, 3403, 1]"]
|
||||
126["Sweep Extrusion<br>[4781, 4800, 1]"]
|
||||
127["Sweep Extrusion<br>[4960, 4980, 1]"]
|
||||
128["Sweep Extrusion<br>[5069, 5090, 1]"]
|
||||
129["Sweep Extrusion<br>[351, 371, 3]"]
|
||||
130["Sweep Extrusion<br>[561, 582, 3]"]
|
||||
131["Sweep Revolve<br>[782, 864, 4]"]
|
||||
132["Sweep Loft<br>[2472, 2491, 4]"]
|
||||
133[Wall]
|
||||
134[Wall]
|
||||
135[Wall]
|
||||
@ -313,16 +313,16 @@ flowchart LR
|
||||
265["SweepEdge Adjacent"]
|
||||
266["SweepEdge Adjacent"]
|
||||
267["SweepEdge Adjacent"]
|
||||
268["EdgeCut Fillet<br>[5113, 5624, 1]"]
|
||||
269["EdgeCut Fillet<br>[5113, 5624, 1]"]
|
||||
270["EdgeCut Fillet<br>[5113, 5624, 1]"]
|
||||
271["EdgeCut Fillet<br>[5113, 5624, 1]"]
|
||||
272["EdgeCut Fillet<br>[5113, 5624, 1]"]
|
||||
273["EdgeCut Fillet<br>[5113, 5624, 1]"]
|
||||
274["EdgeCut Fillet<br>[5113, 5624, 1]"]
|
||||
275["EdgeCut Fillet<br>[5113, 5624, 1]"]
|
||||
276["EdgeCut Fillet<br>[394, 452, 3]"]
|
||||
277["EdgeCut Fillet<br>[394, 452, 3]"]
|
||||
268["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||
269["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||
270["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||
271["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||
272["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||
273["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||
274["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||
275["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||
276["EdgeCut Fillet<br>[412, 470, 3]"]
|
||||
277["EdgeCut Fillet<br>[412, 470, 3]"]
|
||||
1 --- 8
|
||||
1 --- 9
|
||||
1 --- 10
|
||||
|
||||
@ -195,6 +195,31 @@ description: Result of parsing axial-fan.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,56 +1,56 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[664, 726, 0]"]
|
||||
15["Segment<br>[664, 726, 0]"]
|
||||
8["Path<br>[682, 744, 0]"]
|
||||
15["Segment<br>[682, 744, 0]"]
|
||||
32[Solid2d]
|
||||
end
|
||||
subgraph path9 [Path]
|
||||
9["Path<br>[750, 796, 0]"]
|
||||
16["Segment<br>[750, 796, 0]"]
|
||||
9["Path<br>[768, 814, 0]"]
|
||||
16["Segment<br>[768, 814, 0]"]
|
||||
31[Solid2d]
|
||||
end
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[980, 1036, 0]"]
|
||||
17["Segment<br>[1042, 1101, 0]"]
|
||||
18["Segment<br>[1107, 1114, 0]"]
|
||||
10["Path<br>[998, 1054, 0]"]
|
||||
17["Segment<br>[1060, 1119, 0]"]
|
||||
18["Segment<br>[1125, 1132, 0]"]
|
||||
30[Solid2d]
|
||||
end
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[1484, 1606, 0]"]
|
||||
19["Segment<br>[1612, 1672, 0]"]
|
||||
20["Segment<br>[1678, 1709, 0]"]
|
||||
21["Segment<br>[1715, 1743, 0]"]
|
||||
22["Segment<br>[1749, 1756, 0]"]
|
||||
11["Path<br>[1502, 1624, 0]"]
|
||||
19["Segment<br>[1630, 1690, 0]"]
|
||||
20["Segment<br>[1696, 1727, 0]"]
|
||||
21["Segment<br>[1733, 1761, 0]"]
|
||||
22["Segment<br>[1767, 1774, 0]"]
|
||||
27[Solid2d]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[2090, 2232, 0]"]
|
||||
23["Segment<br>[2090, 2232, 0]"]
|
||||
12["Path<br>[2108, 2250, 0]"]
|
||||
23["Segment<br>[2108, 2250, 0]"]
|
||||
28[Solid2d]
|
||||
end
|
||||
subgraph path13 [Path]
|
||||
13["Path<br>[2626, 2679, 0]"]
|
||||
24["Segment<br>[2626, 2679, 0]"]
|
||||
13["Path<br>[2644, 2697, 0]"]
|
||||
24["Segment<br>[2644, 2697, 0]"]
|
||||
26[Solid2d]
|
||||
end
|
||||
subgraph path14 [Path]
|
||||
14["Path<br>[2703, 2777, 0]"]
|
||||
25["Segment<br>[2703, 2777, 0]"]
|
||||
14["Path<br>[2721, 2795, 0]"]
|
||||
25["Segment<br>[2721, 2795, 0]"]
|
||||
29[Solid2d]
|
||||
end
|
||||
1["Plane<br>[610, 657, 0]"]
|
||||
2["Plane<br>[957, 974, 0]"]
|
||||
3["Plane<br>[1461, 1478, 0]"]
|
||||
4["Plane<br>[2067, 2084, 0]"]
|
||||
5["Plane<br>[2572, 2619, 0]"]
|
||||
6["StartSketchOnPlane<br>[2558, 2620, 0]"]
|
||||
7["StartSketchOnPlane<br>[596, 658, 0]"]
|
||||
33["Sweep Extrusion<br>[848, 900, 0]"]
|
||||
34["Sweep Revolve<br>[1196, 1226, 0]"]
|
||||
35["Sweep Revolve<br>[1798, 1828, 0]"]
|
||||
36["Sweep Revolve<br>[2275, 2326, 0]"]
|
||||
37["Sweep Extrusion<br>[2794, 2847, 0]"]
|
||||
1["Plane<br>[628, 675, 0]"]
|
||||
2["Plane<br>[975, 992, 0]"]
|
||||
3["Plane<br>[1479, 1496, 0]"]
|
||||
4["Plane<br>[2085, 2102, 0]"]
|
||||
5["Plane<br>[2590, 2637, 0]"]
|
||||
6["StartSketchOnPlane<br>[2576, 2638, 0]"]
|
||||
7["StartSketchOnPlane<br>[614, 676, 0]"]
|
||||
33["Sweep Extrusion<br>[866, 918, 0]"]
|
||||
34["Sweep Revolve<br>[1214, 1244, 0]"]
|
||||
35["Sweep Revolve<br>[1816, 1846, 0]"]
|
||||
36["Sweep Revolve<br>[2293, 2344, 0]"]
|
||||
37["Sweep Extrusion<br>[2812, 2865, 0]"]
|
||||
38[Wall]
|
||||
39[Wall]
|
||||
40[Wall]
|
||||
|
||||
@ -3800,6 +3800,31 @@ description: Result of parsing ball-bearing.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,275 +1,275 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path24 [Path]
|
||||
24["Path<br>[362, 395, 1]"]
|
||||
44["Segment<br>[403, 429, 1]"]
|
||||
49["Segment<br>[437, 499, 1]"]
|
||||
57["Segment<br>[507, 569, 1]"]
|
||||
62["Segment<br>[577, 640, 1]"]
|
||||
69["Segment<br>[648, 673, 1]"]
|
||||
70["Segment<br>[681, 701, 1]"]
|
||||
79["Segment<br>[709, 733, 1]"]
|
||||
84["Segment<br>[741, 803, 1]"]
|
||||
88["Segment<br>[811, 836, 1]"]
|
||||
98["Segment<br>[844, 864, 1]"]
|
||||
104["Segment<br>[872, 896, 1]"]
|
||||
107["Segment<br>[904, 965, 1]"]
|
||||
112["Segment<br>[973, 1034, 1]"]
|
||||
122["Segment<br>[1042, 1067, 1]"]
|
||||
129["Segment<br>[1075, 1099, 1]"]
|
||||
133["Segment<br>[1107, 1169, 1]"]
|
||||
141["Segment<br>[1177, 1202, 1]"]
|
||||
144["Segment<br>[1210, 1237, 1]"]
|
||||
149["Segment<br>[1245, 1306, 1]"]
|
||||
155["Segment<br>[1314, 1358, 1]"]
|
||||
160["Segment<br>[1366, 1373, 1]"]
|
||||
24["Path<br>[380, 413, 1]"]
|
||||
44["Segment<br>[421, 447, 1]"]
|
||||
49["Segment<br>[455, 517, 1]"]
|
||||
57["Segment<br>[525, 587, 1]"]
|
||||
62["Segment<br>[595, 658, 1]"]
|
||||
69["Segment<br>[666, 691, 1]"]
|
||||
70["Segment<br>[699, 719, 1]"]
|
||||
79["Segment<br>[727, 751, 1]"]
|
||||
84["Segment<br>[759, 821, 1]"]
|
||||
88["Segment<br>[829, 854, 1]"]
|
||||
98["Segment<br>[862, 882, 1]"]
|
||||
104["Segment<br>[890, 914, 1]"]
|
||||
107["Segment<br>[922, 983, 1]"]
|
||||
112["Segment<br>[991, 1052, 1]"]
|
||||
122["Segment<br>[1060, 1085, 1]"]
|
||||
129["Segment<br>[1093, 1117, 1]"]
|
||||
133["Segment<br>[1125, 1187, 1]"]
|
||||
141["Segment<br>[1195, 1220, 1]"]
|
||||
144["Segment<br>[1228, 1255, 1]"]
|
||||
149["Segment<br>[1263, 1324, 1]"]
|
||||
155["Segment<br>[1332, 1376, 1]"]
|
||||
160["Segment<br>[1384, 1391, 1]"]
|
||||
212[Solid2d]
|
||||
end
|
||||
subgraph path25 [Path]
|
||||
25["Path<br>[362, 395, 1]"]
|
||||
40["Segment<br>[403, 429, 1]"]
|
||||
51["Segment<br>[437, 499, 1]"]
|
||||
56["Segment<br>[507, 569, 1]"]
|
||||
59["Segment<br>[577, 640, 1]"]
|
||||
67["Segment<br>[648, 673, 1]"]
|
||||
74["Segment<br>[681, 701, 1]"]
|
||||
81["Segment<br>[709, 733, 1]"]
|
||||
82["Segment<br>[741, 803, 1]"]
|
||||
90["Segment<br>[811, 836, 1]"]
|
||||
99["Segment<br>[844, 864, 1]"]
|
||||
105["Segment<br>[872, 896, 1]"]
|
||||
109["Segment<br>[904, 965, 1]"]
|
||||
113["Segment<br>[973, 1034, 1]"]
|
||||
119["Segment<br>[1042, 1067, 1]"]
|
||||
124["Segment<br>[1075, 1099, 1]"]
|
||||
132["Segment<br>[1107, 1169, 1]"]
|
||||
140["Segment<br>[1177, 1202, 1]"]
|
||||
143["Segment<br>[1210, 1237, 1]"]
|
||||
150["Segment<br>[1245, 1306, 1]"]
|
||||
154["Segment<br>[1314, 1358, 1]"]
|
||||
164["Segment<br>[1366, 1373, 1]"]
|
||||
25["Path<br>[380, 413, 1]"]
|
||||
40["Segment<br>[421, 447, 1]"]
|
||||
51["Segment<br>[455, 517, 1]"]
|
||||
56["Segment<br>[525, 587, 1]"]
|
||||
59["Segment<br>[595, 658, 1]"]
|
||||
67["Segment<br>[666, 691, 1]"]
|
||||
74["Segment<br>[699, 719, 1]"]
|
||||
81["Segment<br>[727, 751, 1]"]
|
||||
82["Segment<br>[759, 821, 1]"]
|
||||
90["Segment<br>[829, 854, 1]"]
|
||||
99["Segment<br>[862, 882, 1]"]
|
||||
105["Segment<br>[890, 914, 1]"]
|
||||
109["Segment<br>[922, 983, 1]"]
|
||||
113["Segment<br>[991, 1052, 1]"]
|
||||
119["Segment<br>[1060, 1085, 1]"]
|
||||
124["Segment<br>[1093, 1117, 1]"]
|
||||
132["Segment<br>[1125, 1187, 1]"]
|
||||
140["Segment<br>[1195, 1220, 1]"]
|
||||
143["Segment<br>[1228, 1255, 1]"]
|
||||
150["Segment<br>[1263, 1324, 1]"]
|
||||
154["Segment<br>[1332, 1376, 1]"]
|
||||
164["Segment<br>[1384, 1391, 1]"]
|
||||
217[Solid2d]
|
||||
end
|
||||
subgraph path26 [Path]
|
||||
26["Path<br>[362, 395, 1]"]
|
||||
43["Segment<br>[403, 429, 1]"]
|
||||
50["Segment<br>[437, 499, 1]"]
|
||||
54["Segment<br>[507, 569, 1]"]
|
||||
61["Segment<br>[577, 640, 1]"]
|
||||
65["Segment<br>[648, 673, 1]"]
|
||||
71["Segment<br>[681, 701, 1]"]
|
||||
80["Segment<br>[709, 733, 1]"]
|
||||
87["Segment<br>[741, 803, 1]"]
|
||||
92["Segment<br>[811, 836, 1]"]
|
||||
94["Segment<br>[844, 864, 1]"]
|
||||
101["Segment<br>[872, 896, 1]"]
|
||||
111["Segment<br>[904, 965, 1]"]
|
||||
117["Segment<br>[973, 1034, 1]"]
|
||||
123["Segment<br>[1042, 1067, 1]"]
|
||||
125["Segment<br>[1075, 1099, 1]"]
|
||||
134["Segment<br>[1107, 1169, 1]"]
|
||||
136["Segment<br>[1177, 1202, 1]"]
|
||||
147["Segment<br>[1210, 1237, 1]"]
|
||||
148["Segment<br>[1245, 1306, 1]"]
|
||||
156["Segment<br>[1314, 1358, 1]"]
|
||||
165["Segment<br>[1366, 1373, 1]"]
|
||||
26["Path<br>[380, 413, 1]"]
|
||||
43["Segment<br>[421, 447, 1]"]
|
||||
50["Segment<br>[455, 517, 1]"]
|
||||
54["Segment<br>[525, 587, 1]"]
|
||||
61["Segment<br>[595, 658, 1]"]
|
||||
65["Segment<br>[666, 691, 1]"]
|
||||
71["Segment<br>[699, 719, 1]"]
|
||||
80["Segment<br>[727, 751, 1]"]
|
||||
87["Segment<br>[759, 821, 1]"]
|
||||
92["Segment<br>[829, 854, 1]"]
|
||||
94["Segment<br>[862, 882, 1]"]
|
||||
101["Segment<br>[890, 914, 1]"]
|
||||
111["Segment<br>[922, 983, 1]"]
|
||||
117["Segment<br>[991, 1052, 1]"]
|
||||
123["Segment<br>[1060, 1085, 1]"]
|
||||
125["Segment<br>[1093, 1117, 1]"]
|
||||
134["Segment<br>[1125, 1187, 1]"]
|
||||
136["Segment<br>[1195, 1220, 1]"]
|
||||
147["Segment<br>[1228, 1255, 1]"]
|
||||
148["Segment<br>[1263, 1324, 1]"]
|
||||
156["Segment<br>[1332, 1376, 1]"]
|
||||
165["Segment<br>[1384, 1391, 1]"]
|
||||
218[Solid2d]
|
||||
end
|
||||
subgraph path27 [Path]
|
||||
27["Path<br>[362, 395, 1]"]
|
||||
42["Segment<br>[403, 429, 1]"]
|
||||
47["Segment<br>[437, 499, 1]"]
|
||||
53["Segment<br>[507, 569, 1]"]
|
||||
58["Segment<br>[577, 640, 1]"]
|
||||
68["Segment<br>[648, 673, 1]"]
|
||||
73["Segment<br>[681, 701, 1]"]
|
||||
77["Segment<br>[709, 733, 1]"]
|
||||
83["Segment<br>[741, 803, 1]"]
|
||||
91["Segment<br>[811, 836, 1]"]
|
||||
95["Segment<br>[844, 864, 1]"]
|
||||
100["Segment<br>[872, 896, 1]"]
|
||||
108["Segment<br>[904, 965, 1]"]
|
||||
114["Segment<br>[973, 1034, 1]"]
|
||||
120["Segment<br>[1042, 1067, 1]"]
|
||||
126["Segment<br>[1075, 1099, 1]"]
|
||||
135["Segment<br>[1107, 1169, 1]"]
|
||||
139["Segment<br>[1177, 1202, 1]"]
|
||||
142["Segment<br>[1210, 1237, 1]"]
|
||||
151["Segment<br>[1245, 1306, 1]"]
|
||||
157["Segment<br>[1314, 1358, 1]"]
|
||||
161["Segment<br>[1366, 1373, 1]"]
|
||||
27["Path<br>[380, 413, 1]"]
|
||||
42["Segment<br>[421, 447, 1]"]
|
||||
47["Segment<br>[455, 517, 1]"]
|
||||
53["Segment<br>[525, 587, 1]"]
|
||||
58["Segment<br>[595, 658, 1]"]
|
||||
68["Segment<br>[666, 691, 1]"]
|
||||
73["Segment<br>[699, 719, 1]"]
|
||||
77["Segment<br>[727, 751, 1]"]
|
||||
83["Segment<br>[759, 821, 1]"]
|
||||
91["Segment<br>[829, 854, 1]"]
|
||||
95["Segment<br>[862, 882, 1]"]
|
||||
100["Segment<br>[890, 914, 1]"]
|
||||
108["Segment<br>[922, 983, 1]"]
|
||||
114["Segment<br>[991, 1052, 1]"]
|
||||
120["Segment<br>[1060, 1085, 1]"]
|
||||
126["Segment<br>[1093, 1117, 1]"]
|
||||
135["Segment<br>[1125, 1187, 1]"]
|
||||
139["Segment<br>[1195, 1220, 1]"]
|
||||
142["Segment<br>[1228, 1255, 1]"]
|
||||
151["Segment<br>[1263, 1324, 1]"]
|
||||
157["Segment<br>[1332, 1376, 1]"]
|
||||
161["Segment<br>[1384, 1391, 1]"]
|
||||
219[Solid2d]
|
||||
end
|
||||
subgraph path28 [Path]
|
||||
28["Path<br>[362, 395, 1]"]
|
||||
45["Segment<br>[403, 429, 1]"]
|
||||
46["Segment<br>[437, 499, 1]"]
|
||||
52["Segment<br>[507, 569, 1]"]
|
||||
63["Segment<br>[577, 640, 1]"]
|
||||
66["Segment<br>[648, 673, 1]"]
|
||||
72["Segment<br>[681, 701, 1]"]
|
||||
78["Segment<br>[709, 733, 1]"]
|
||||
86["Segment<br>[741, 803, 1]"]
|
||||
89["Segment<br>[811, 836, 1]"]
|
||||
96["Segment<br>[844, 864, 1]"]
|
||||
102["Segment<br>[872, 896, 1]"]
|
||||
106["Segment<br>[904, 965, 1]"]
|
||||
116["Segment<br>[973, 1034, 1]"]
|
||||
118["Segment<br>[1042, 1067, 1]"]
|
||||
128["Segment<br>[1075, 1099, 1]"]
|
||||
130["Segment<br>[1107, 1169, 1]"]
|
||||
137["Segment<br>[1177, 1202, 1]"]
|
||||
145["Segment<br>[1210, 1237, 1]"]
|
||||
152["Segment<br>[1245, 1306, 1]"]
|
||||
158["Segment<br>[1314, 1358, 1]"]
|
||||
162["Segment<br>[1366, 1373, 1]"]
|
||||
28["Path<br>[380, 413, 1]"]
|
||||
45["Segment<br>[421, 447, 1]"]
|
||||
46["Segment<br>[455, 517, 1]"]
|
||||
52["Segment<br>[525, 587, 1]"]
|
||||
63["Segment<br>[595, 658, 1]"]
|
||||
66["Segment<br>[666, 691, 1]"]
|
||||
72["Segment<br>[699, 719, 1]"]
|
||||
78["Segment<br>[727, 751, 1]"]
|
||||
86["Segment<br>[759, 821, 1]"]
|
||||
89["Segment<br>[829, 854, 1]"]
|
||||
96["Segment<br>[862, 882, 1]"]
|
||||
102["Segment<br>[890, 914, 1]"]
|
||||
106["Segment<br>[922, 983, 1]"]
|
||||
116["Segment<br>[991, 1052, 1]"]
|
||||
118["Segment<br>[1060, 1085, 1]"]
|
||||
128["Segment<br>[1093, 1117, 1]"]
|
||||
130["Segment<br>[1125, 1187, 1]"]
|
||||
137["Segment<br>[1195, 1220, 1]"]
|
||||
145["Segment<br>[1228, 1255, 1]"]
|
||||
152["Segment<br>[1263, 1324, 1]"]
|
||||
158["Segment<br>[1332, 1376, 1]"]
|
||||
162["Segment<br>[1384, 1391, 1]"]
|
||||
220[Solid2d]
|
||||
end
|
||||
subgraph path29 [Path]
|
||||
29["Path<br>[362, 395, 1]"]
|
||||
41["Segment<br>[403, 429, 1]"]
|
||||
48["Segment<br>[437, 499, 1]"]
|
||||
55["Segment<br>[507, 569, 1]"]
|
||||
60["Segment<br>[577, 640, 1]"]
|
||||
64["Segment<br>[648, 673, 1]"]
|
||||
75["Segment<br>[681, 701, 1]"]
|
||||
76["Segment<br>[709, 733, 1]"]
|
||||
85["Segment<br>[741, 803, 1]"]
|
||||
93["Segment<br>[811, 836, 1]"]
|
||||
97["Segment<br>[844, 864, 1]"]
|
||||
103["Segment<br>[872, 896, 1]"]
|
||||
110["Segment<br>[904, 965, 1]"]
|
||||
115["Segment<br>[973, 1034, 1]"]
|
||||
121["Segment<br>[1042, 1067, 1]"]
|
||||
127["Segment<br>[1075, 1099, 1]"]
|
||||
131["Segment<br>[1107, 1169, 1]"]
|
||||
138["Segment<br>[1177, 1202, 1]"]
|
||||
146["Segment<br>[1210, 1237, 1]"]
|
||||
153["Segment<br>[1245, 1306, 1]"]
|
||||
159["Segment<br>[1314, 1358, 1]"]
|
||||
163["Segment<br>[1366, 1373, 1]"]
|
||||
29["Path<br>[380, 413, 1]"]
|
||||
41["Segment<br>[421, 447, 1]"]
|
||||
48["Segment<br>[455, 517, 1]"]
|
||||
55["Segment<br>[525, 587, 1]"]
|
||||
60["Segment<br>[595, 658, 1]"]
|
||||
64["Segment<br>[666, 691, 1]"]
|
||||
75["Segment<br>[699, 719, 1]"]
|
||||
76["Segment<br>[727, 751, 1]"]
|
||||
85["Segment<br>[759, 821, 1]"]
|
||||
93["Segment<br>[829, 854, 1]"]
|
||||
97["Segment<br>[862, 882, 1]"]
|
||||
103["Segment<br>[890, 914, 1]"]
|
||||
110["Segment<br>[922, 983, 1]"]
|
||||
115["Segment<br>[991, 1052, 1]"]
|
||||
121["Segment<br>[1060, 1085, 1]"]
|
||||
127["Segment<br>[1093, 1117, 1]"]
|
||||
131["Segment<br>[1125, 1187, 1]"]
|
||||
138["Segment<br>[1195, 1220, 1]"]
|
||||
146["Segment<br>[1228, 1255, 1]"]
|
||||
153["Segment<br>[1263, 1324, 1]"]
|
||||
159["Segment<br>[1332, 1376, 1]"]
|
||||
163["Segment<br>[1384, 1391, 1]"]
|
||||
221[Solid2d]
|
||||
end
|
||||
subgraph path30 [Path]
|
||||
30["Path<br>[1765, 1789, 1]"]
|
||||
30["Path<br>[1783, 1807, 1]"]
|
||||
end
|
||||
subgraph path31 [Path]
|
||||
31["Path<br>[1765, 1789, 1]"]
|
||||
31["Path<br>[1783, 1807, 1]"]
|
||||
end
|
||||
subgraph path32 [Path]
|
||||
32["Path<br>[1797, 1923, 1]"]
|
||||
169["Segment<br>[1797, 1923, 1]"]
|
||||
170["Segment<br>[1797, 1923, 1]"]
|
||||
171["Segment<br>[1797, 1923, 1]"]
|
||||
172["Segment<br>[1797, 1923, 1]"]
|
||||
176["Segment<br>[1797, 1923, 1]"]
|
||||
178["Segment<br>[1797, 1923, 1]"]
|
||||
179["Segment<br>[1797, 1923, 1]"]
|
||||
32["Path<br>[1815, 1941, 1]"]
|
||||
169["Segment<br>[1815, 1941, 1]"]
|
||||
170["Segment<br>[1815, 1941, 1]"]
|
||||
171["Segment<br>[1815, 1941, 1]"]
|
||||
172["Segment<br>[1815, 1941, 1]"]
|
||||
176["Segment<br>[1815, 1941, 1]"]
|
||||
178["Segment<br>[1815, 1941, 1]"]
|
||||
179["Segment<br>[1815, 1941, 1]"]
|
||||
215[Solid2d]
|
||||
end
|
||||
subgraph path33 [Path]
|
||||
33["Path<br>[1797, 1923, 1]"]
|
||||
166["Segment<br>[1797, 1923, 1]"]
|
||||
167["Segment<br>[1797, 1923, 1]"]
|
||||
168["Segment<br>[1797, 1923, 1]"]
|
||||
173["Segment<br>[1797, 1923, 1]"]
|
||||
174["Segment<br>[1797, 1923, 1]"]
|
||||
175["Segment<br>[1797, 1923, 1]"]
|
||||
177["Segment<br>[1797, 1923, 1]"]
|
||||
33["Path<br>[1815, 1941, 1]"]
|
||||
166["Segment<br>[1815, 1941, 1]"]
|
||||
167["Segment<br>[1815, 1941, 1]"]
|
||||
168["Segment<br>[1815, 1941, 1]"]
|
||||
173["Segment<br>[1815, 1941, 1]"]
|
||||
174["Segment<br>[1815, 1941, 1]"]
|
||||
175["Segment<br>[1815, 1941, 1]"]
|
||||
177["Segment<br>[1815, 1941, 1]"]
|
||||
222[Solid2d]
|
||||
end
|
||||
subgraph path34 [Path]
|
||||
34["Path<br>[2217, 2244, 1]"]
|
||||
180["Segment<br>[2252, 2274, 1]"]
|
||||
181["Segment<br>[2282, 2304, 1]"]
|
||||
182["Segment<br>[2312, 2334, 1]"]
|
||||
183["Segment<br>[2342, 2365, 1]"]
|
||||
184["Segment<br>[2373, 2396, 1]"]
|
||||
185["Segment<br>[2404, 2439, 1]"]
|
||||
186["Segment<br>[2447, 2454, 1]"]
|
||||
34["Path<br>[2235, 2262, 1]"]
|
||||
180["Segment<br>[2270, 2292, 1]"]
|
||||
181["Segment<br>[2300, 2322, 1]"]
|
||||
182["Segment<br>[2330, 2352, 1]"]
|
||||
183["Segment<br>[2360, 2383, 1]"]
|
||||
184["Segment<br>[2391, 2414, 1]"]
|
||||
185["Segment<br>[2422, 2457, 1]"]
|
||||
186["Segment<br>[2465, 2472, 1]"]
|
||||
223[Solid2d]
|
||||
end
|
||||
subgraph path35 [Path]
|
||||
35["Path<br>[2728, 2757, 1]"]
|
||||
187["Segment<br>[2765, 2800, 1]"]
|
||||
188["Segment<br>[2808, 2833, 1]"]
|
||||
189["Segment<br>[2841, 2877, 1]"]
|
||||
190["Segment<br>[2885, 2909, 1]"]
|
||||
191["Segment<br>[2917, 2951, 1]"]
|
||||
192["Segment<br>[2959, 2994, 1]"]
|
||||
193["Segment<br>[3002, 3009, 1]"]
|
||||
35["Path<br>[2746, 2775, 1]"]
|
||||
187["Segment<br>[2783, 2818, 1]"]
|
||||
188["Segment<br>[2826, 2851, 1]"]
|
||||
189["Segment<br>[2859, 2895, 1]"]
|
||||
190["Segment<br>[2903, 2927, 1]"]
|
||||
191["Segment<br>[2935, 2969, 1]"]
|
||||
192["Segment<br>[2977, 3012, 1]"]
|
||||
193["Segment<br>[3020, 3027, 1]"]
|
||||
214[Solid2d]
|
||||
end
|
||||
subgraph path36 [Path]
|
||||
36["Path<br>[3286, 3313, 1]"]
|
||||
195["Segment<br>[3321, 3340, 1]"]
|
||||
197["Segment<br>[3348, 3397, 1]"]
|
||||
36["Path<br>[3304, 3331, 1]"]
|
||||
195["Segment<br>[3339, 3358, 1]"]
|
||||
197["Segment<br>[3366, 3415, 1]"]
|
||||
end
|
||||
subgraph path37 [Path]
|
||||
37["Path<br>[3286, 3313, 1]"]
|
||||
194["Segment<br>[3321, 3340, 1]"]
|
||||
196["Segment<br>[3348, 3397, 1]"]
|
||||
37["Path<br>[3304, 3331, 1]"]
|
||||
194["Segment<br>[3339, 3358, 1]"]
|
||||
196["Segment<br>[3366, 3415, 1]"]
|
||||
end
|
||||
subgraph path38 [Path]
|
||||
38["Path<br>[3498, 3531, 1]"]
|
||||
199["Segment<br>[3539, 3558, 1]"]
|
||||
200["Segment<br>[3566, 3588, 1]"]
|
||||
202["Segment<br>[3596, 3619, 1]"]
|
||||
204["Segment<br>[3627, 3647, 1]"]
|
||||
206["Segment<br>[3655, 3679, 1]"]
|
||||
209["Segment<br>[3687, 3710, 1]"]
|
||||
211["Segment<br>[3718, 3725, 1]"]
|
||||
38["Path<br>[3516, 3549, 1]"]
|
||||
199["Segment<br>[3557, 3576, 1]"]
|
||||
200["Segment<br>[3584, 3606, 1]"]
|
||||
202["Segment<br>[3614, 3637, 1]"]
|
||||
204["Segment<br>[3645, 3665, 1]"]
|
||||
206["Segment<br>[3673, 3697, 1]"]
|
||||
209["Segment<br>[3705, 3728, 1]"]
|
||||
211["Segment<br>[3736, 3743, 1]"]
|
||||
213[Solid2d]
|
||||
end
|
||||
subgraph path39 [Path]
|
||||
39["Path<br>[3498, 3531, 1]"]
|
||||
198["Segment<br>[3539, 3558, 1]"]
|
||||
201["Segment<br>[3566, 3588, 1]"]
|
||||
203["Segment<br>[3596, 3619, 1]"]
|
||||
205["Segment<br>[3627, 3647, 1]"]
|
||||
207["Segment<br>[3655, 3679, 1]"]
|
||||
208["Segment<br>[3687, 3710, 1]"]
|
||||
210["Segment<br>[3718, 3725, 1]"]
|
||||
39["Path<br>[3516, 3549, 1]"]
|
||||
198["Segment<br>[3557, 3576, 1]"]
|
||||
201["Segment<br>[3584, 3606, 1]"]
|
||||
203["Segment<br>[3614, 3637, 1]"]
|
||||
205["Segment<br>[3645, 3665, 1]"]
|
||||
207["Segment<br>[3673, 3697, 1]"]
|
||||
208["Segment<br>[3705, 3728, 1]"]
|
||||
210["Segment<br>[3736, 3743, 1]"]
|
||||
216[Solid2d]
|
||||
end
|
||||
1["Plane<br>[823, 864, 0]"]
|
||||
2["Plane<br>[874, 916, 0]"]
|
||||
3["Plane<br>[975, 1017, 0]"]
|
||||
4["Plane<br>[1077, 1144, 0]"]
|
||||
5["Plane<br>[1223, 1290, 0]"]
|
||||
6["Plane<br>[334, 354, 1]"]
|
||||
7["Plane<br>[334, 354, 1]"]
|
||||
8["Plane<br>[3805, 3840, 1]"]
|
||||
9["Plane<br>[3805, 3840, 1]"]
|
||||
10["Plane<br>[3869, 3898, 1]"]
|
||||
11["Plane<br>[3869, 3898, 1]"]
|
||||
12["StartSketchOnPlane<br>[2700, 2720, 1]"]
|
||||
13["StartSketchOnPlane<br>[1737, 1757, 1]"]
|
||||
14["StartSketchOnPlane<br>[3258, 3278, 1]"]
|
||||
15["StartSketchOnPlane<br>[1737, 1757, 1]"]
|
||||
16["StartSketchOnPlane<br>[334, 354, 1]"]
|
||||
17["StartSketchOnPlane<br>[3470, 3490, 1]"]
|
||||
18["StartSketchOnPlane<br>[3470, 3490, 1]"]
|
||||
19["StartSketchOnPlane<br>[334, 354, 1]"]
|
||||
20["StartSketchOnPlane<br>[334, 354, 1]"]
|
||||
21["StartSketchOnPlane<br>[3258, 3278, 1]"]
|
||||
22["StartSketchOnPlane<br>[334, 354, 1]"]
|
||||
23["StartSketchOnPlane<br>[2189, 2209, 1]"]
|
||||
224["Sweep Extrusion<br>[1462, 1500, 1]"]
|
||||
225["Sweep Extrusion<br>[1462, 1500, 1]"]
|
||||
226["Sweep Extrusion<br>[1462, 1500, 1]"]
|
||||
227["Sweep Extrusion<br>[1538, 1577, 1]"]
|
||||
228["Sweep Extrusion<br>[1538, 1577, 1]"]
|
||||
229["Sweep Extrusion<br>[1538, 1577, 1]"]
|
||||
230["Sweep Extrusion<br>[2034, 2058, 1]"]
|
||||
231["Sweep Extrusion<br>[2108, 2132, 1]"]
|
||||
232["Sweep Extrusion<br>[2618, 2642, 1]"]
|
||||
233["Sweep Extrusion<br>[2618, 2642, 1]"]
|
||||
234["Sweep Extrusion<br>[2618, 2642, 1]"]
|
||||
235["Sweep Extrusion<br>[3180, 3204, 1]"]
|
||||
236["Sweep Extrusion<br>[3180, 3204, 1]"]
|
||||
237["Sweep Sweep<br>[3920, 3947, 1]"]
|
||||
238["Sweep Sweep<br>[3920, 3947, 1]"]
|
||||
1["Plane<br>[841, 882, 0]"]
|
||||
2["Plane<br>[892, 934, 0]"]
|
||||
3["Plane<br>[993, 1035, 0]"]
|
||||
4["Plane<br>[1095, 1162, 0]"]
|
||||
5["Plane<br>[1241, 1308, 0]"]
|
||||
6["Plane<br>[352, 372, 1]"]
|
||||
7["Plane<br>[352, 372, 1]"]
|
||||
8["Plane<br>[3823, 3858, 1]"]
|
||||
9["Plane<br>[3823, 3858, 1]"]
|
||||
10["Plane<br>[3887, 3916, 1]"]
|
||||
11["Plane<br>[3887, 3916, 1]"]
|
||||
12["StartSketchOnPlane<br>[2718, 2738, 1]"]
|
||||
13["StartSketchOnPlane<br>[1755, 1775, 1]"]
|
||||
14["StartSketchOnPlane<br>[3276, 3296, 1]"]
|
||||
15["StartSketchOnPlane<br>[1755, 1775, 1]"]
|
||||
16["StartSketchOnPlane<br>[352, 372, 1]"]
|
||||
17["StartSketchOnPlane<br>[3488, 3508, 1]"]
|
||||
18["StartSketchOnPlane<br>[3488, 3508, 1]"]
|
||||
19["StartSketchOnPlane<br>[352, 372, 1]"]
|
||||
20["StartSketchOnPlane<br>[352, 372, 1]"]
|
||||
21["StartSketchOnPlane<br>[3276, 3296, 1]"]
|
||||
22["StartSketchOnPlane<br>[352, 372, 1]"]
|
||||
23["StartSketchOnPlane<br>[2207, 2227, 1]"]
|
||||
224["Sweep Extrusion<br>[1480, 1518, 1]"]
|
||||
225["Sweep Extrusion<br>[1480, 1518, 1]"]
|
||||
226["Sweep Extrusion<br>[1480, 1518, 1]"]
|
||||
227["Sweep Extrusion<br>[1556, 1595, 1]"]
|
||||
228["Sweep Extrusion<br>[1556, 1595, 1]"]
|
||||
229["Sweep Extrusion<br>[1556, 1595, 1]"]
|
||||
230["Sweep Extrusion<br>[2052, 2076, 1]"]
|
||||
231["Sweep Extrusion<br>[2126, 2150, 1]"]
|
||||
232["Sweep Extrusion<br>[2636, 2660, 1]"]
|
||||
233["Sweep Extrusion<br>[2636, 2660, 1]"]
|
||||
234["Sweep Extrusion<br>[2636, 2660, 1]"]
|
||||
235["Sweep Extrusion<br>[3198, 3222, 1]"]
|
||||
236["Sweep Extrusion<br>[3198, 3222, 1]"]
|
||||
237["Sweep Sweep<br>[3938, 3965, 1]"]
|
||||
238["Sweep Sweep<br>[3938, 3965, 1]"]
|
||||
239[Wall]
|
||||
240[Wall]
|
||||
241[Wall]
|
||||
|
||||
@ -1367,6 +1367,31 @@ description: Result of parsing bench.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,23 +1,23 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path4 [Path]
|
||||
4["Path<br>[337, 378, 0]"]
|
||||
6["Segment<br>[384, 415, 0]"]
|
||||
7["Segment<br>[421, 516, 0]"]
|
||||
8["Segment<br>[522, 544, 0]"]
|
||||
9["Segment<br>[574, 581, 0]"]
|
||||
4["Path<br>[355, 396, 0]"]
|
||||
6["Segment<br>[402, 433, 0]"]
|
||||
7["Segment<br>[439, 534, 0]"]
|
||||
8["Segment<br>[540, 562, 0]"]
|
||||
9["Segment<br>[592, 599, 0]"]
|
||||
11[Solid2d]
|
||||
end
|
||||
subgraph path5 [Path]
|
||||
5["Path<br>[738, 788, 0]"]
|
||||
10["Segment<br>[738, 788, 0]"]
|
||||
5["Path<br>[756, 806, 0]"]
|
||||
10["Segment<br>[756, 806, 0]"]
|
||||
12[Solid2d]
|
||||
end
|
||||
1["Plane<br>[314, 331, 0]"]
|
||||
2["Plane<br>[738, 788, 0]"]
|
||||
3["StartSketchOnFace<br>[695, 732, 0]"]
|
||||
13["Sweep Extrusion<br>[587, 629, 0]"]
|
||||
14["Sweep Extrusion<br>[794, 821, 0]"]
|
||||
1["Plane<br>[332, 349, 0]"]
|
||||
2["Plane<br>[756, 806, 0]"]
|
||||
3["StartSketchOnFace<br>[713, 750, 0]"]
|
||||
13["Sweep Extrusion<br>[605, 647, 0]"]
|
||||
14["Sweep Extrusion<br>[812, 839, 0]"]
|
||||
15[Wall]
|
||||
16["Cap End"]
|
||||
17["SweepEdge Opposite"]
|
||||
|
||||
@ -1357,6 +1357,31 @@ description: Result of parsing bottle.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,36 +1,36 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path4 [Path]
|
||||
4["Path<br>[2065, 2090, 0]"]
|
||||
7["Segment<br>[2096, 2154, 0]"]
|
||||
8["Segment<br>[2160, 2199, 0]"]
|
||||
9["Segment<br>[2205, 2252, 0]"]
|
||||
10["Segment<br>[2258, 2304, 0]"]
|
||||
11["Segment<br>[2310, 2349, 0]"]
|
||||
12["Segment<br>[2355, 2425, 0]"]
|
||||
13["Segment<br>[2431, 2438, 0]"]
|
||||
4["Path<br>[2083, 2108, 0]"]
|
||||
7["Segment<br>[2114, 2172, 0]"]
|
||||
8["Segment<br>[2178, 2217, 0]"]
|
||||
9["Segment<br>[2223, 2270, 0]"]
|
||||
10["Segment<br>[2276, 2322, 0]"]
|
||||
11["Segment<br>[2328, 2367, 0]"]
|
||||
12["Segment<br>[2373, 2443, 0]"]
|
||||
13["Segment<br>[2449, 2456, 0]"]
|
||||
17[Solid2d]
|
||||
end
|
||||
subgraph path5 [Path]
|
||||
5["Path<br>[2583, 2773, 0]"]
|
||||
14["Segment<br>[2583, 2773, 0]"]
|
||||
5["Path<br>[2601, 2791, 0]"]
|
||||
14["Segment<br>[2601, 2791, 0]"]
|
||||
16[Solid2d]
|
||||
end
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[3207, 3409, 0]"]
|
||||
15["Segment<br>[3207, 3409, 0]"]
|
||||
6["Path<br>[3225, 3427, 0]"]
|
||||
15["Segment<br>[3225, 3427, 0]"]
|
||||
18[Solid2d]
|
||||
end
|
||||
1["Plane<br>[2042, 2059, 0]"]
|
||||
2["StartSketchOnFace<br>[3161, 3201, 0]"]
|
||||
3["StartSketchOnFace<br>[2537, 2577, 0]"]
|
||||
19["Sweep Extrusion<br>[2444, 2470, 0]"]
|
||||
20["Sweep Extrusion<br>[3059, 3096, 0]"]
|
||||
21["Sweep Extrusion<br>[3059, 3096, 0]"]
|
||||
22["Sweep Extrusion<br>[3059, 3096, 0]"]
|
||||
23["Sweep Extrusion<br>[3059, 3096, 0]"]
|
||||
24["Sweep Extrusion<br>[3524, 3561, 0]"]
|
||||
25["Sweep Extrusion<br>[3524, 3561, 0]"]
|
||||
1["Plane<br>[2060, 2077, 0]"]
|
||||
2["StartSketchOnFace<br>[3179, 3219, 0]"]
|
||||
3["StartSketchOnFace<br>[2555, 2595, 0]"]
|
||||
19["Sweep Extrusion<br>[2462, 2488, 0]"]
|
||||
20["Sweep Extrusion<br>[3077, 3114, 0]"]
|
||||
21["Sweep Extrusion<br>[3077, 3114, 0]"]
|
||||
22["Sweep Extrusion<br>[3077, 3114, 0]"]
|
||||
23["Sweep Extrusion<br>[3077, 3114, 0]"]
|
||||
24["Sweep Extrusion<br>[3542, 3579, 0]"]
|
||||
25["Sweep Extrusion<br>[3542, 3579, 0]"]
|
||||
26[Wall]
|
||||
27[Wall]
|
||||
28[Wall]
|
||||
@ -57,12 +57,12 @@ flowchart LR
|
||||
49["SweepEdge Adjacent"]
|
||||
50["SweepEdge Adjacent"]
|
||||
51["SweepEdge Adjacent"]
|
||||
52["EdgeCut Fillet<br>[3578, 3658, 0]"]
|
||||
53["EdgeCut Fillet<br>[3659, 3736, 0]"]
|
||||
54["EdgeCut Fillet<br>[3762, 3904, 0]"]
|
||||
55["EdgeCut Fillet<br>[3762, 3904, 0]"]
|
||||
56["EdgeCut Fillet<br>[3762, 3904, 0]"]
|
||||
57["EdgeCut Fillet<br>[3762, 3904, 0]"]
|
||||
52["EdgeCut Fillet<br>[3596, 3676, 0]"]
|
||||
53["EdgeCut Fillet<br>[3677, 3754, 0]"]
|
||||
54["EdgeCut Fillet<br>[3780, 3922, 0]"]
|
||||
55["EdgeCut Fillet<br>[3780, 3922, 0]"]
|
||||
56["EdgeCut Fillet<br>[3780, 3922, 0]"]
|
||||
57["EdgeCut Fillet<br>[3780, 3922, 0]"]
|
||||
1 --- 4
|
||||
33 x--> 2
|
||||
32 x--> 3
|
||||
|
||||
@ -3721,6 +3721,31 @@ description: Result of parsing bracket.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,274 +1,274 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[354, 410, 1]"]
|
||||
34["Segment<br>[354, 410, 1]"]
|
||||
11["Path<br>[372, 428, 1]"]
|
||||
34["Segment<br>[372, 428, 1]"]
|
||||
153[Solid2d]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[434, 490, 1]"]
|
||||
35["Segment<br>[434, 490, 1]"]
|
||||
12["Path<br>[452, 508, 1]"]
|
||||
35["Segment<br>[452, 508, 1]"]
|
||||
143[Solid2d]
|
||||
end
|
||||
subgraph path13 [Path]
|
||||
13["Path<br>[657, 713, 1]"]
|
||||
36["Segment<br>[657, 713, 1]"]
|
||||
13["Path<br>[675, 731, 1]"]
|
||||
36["Segment<br>[675, 731, 1]"]
|
||||
149[Solid2d]
|
||||
end
|
||||
subgraph path14 [Path]
|
||||
14["Path<br>[737, 793, 1]"]
|
||||
37["Segment<br>[737, 793, 1]"]
|
||||
14["Path<br>[755, 811, 1]"]
|
||||
37["Segment<br>[755, 811, 1]"]
|
||||
151[Solid2d]
|
||||
end
|
||||
subgraph path15 [Path]
|
||||
15["Path<br>[939, 993, 1]"]
|
||||
38["Segment<br>[939, 993, 1]"]
|
||||
15["Path<br>[957, 1011, 1]"]
|
||||
38["Segment<br>[957, 1011, 1]"]
|
||||
159[Solid2d]
|
||||
end
|
||||
subgraph path16 [Path]
|
||||
16["Path<br>[1276, 1331, 1]"]
|
||||
39["Segment<br>[1276, 1331, 1]"]
|
||||
16["Path<br>[1294, 1349, 1]"]
|
||||
39["Segment<br>[1294, 1349, 1]"]
|
||||
161[Solid2d]
|
||||
end
|
||||
subgraph path17 [Path]
|
||||
17["Path<br>[1689, 1735, 1]"]
|
||||
40["Segment<br>[1741, 1793, 1]"]
|
||||
41["Segment<br>[1799, 1872, 1]"]
|
||||
42["Segment<br>[1878, 1900, 1]"]
|
||||
43["Segment<br>[1906, 1962, 1]"]
|
||||
44["Segment<br>[1968, 1975, 1]"]
|
||||
17["Path<br>[1707, 1753, 1]"]
|
||||
40["Segment<br>[1759, 1811, 1]"]
|
||||
41["Segment<br>[1817, 1890, 1]"]
|
||||
42["Segment<br>[1896, 1918, 1]"]
|
||||
43["Segment<br>[1924, 1980, 1]"]
|
||||
44["Segment<br>[1986, 1993, 1]"]
|
||||
147[Solid2d]
|
||||
end
|
||||
subgraph path18 [Path]
|
||||
18["Path<br>[2107, 2153, 1]"]
|
||||
45["Segment<br>[2159, 2211, 1]"]
|
||||
46["Segment<br>[2217, 2292, 1]"]
|
||||
47["Segment<br>[2298, 2335, 1]"]
|
||||
48["Segment<br>[2341, 2397, 1]"]
|
||||
49["Segment<br>[2403, 2410, 1]"]
|
||||
18["Path<br>[2125, 2171, 1]"]
|
||||
45["Segment<br>[2177, 2229, 1]"]
|
||||
46["Segment<br>[2235, 2310, 1]"]
|
||||
47["Segment<br>[2316, 2353, 1]"]
|
||||
48["Segment<br>[2359, 2415, 1]"]
|
||||
49["Segment<br>[2421, 2428, 1]"]
|
||||
150[Solid2d]
|
||||
end
|
||||
subgraph path19 [Path]
|
||||
19["Path<br>[2891, 2938, 1]"]
|
||||
50["Segment<br>[2946, 3283, 1]"]
|
||||
52["Segment<br>[3291, 3323, 1]"]
|
||||
55["Segment<br>[3331, 3672, 1]"]
|
||||
56["Segment<br>[3680, 3736, 1]"]
|
||||
59["Segment<br>[3744, 3751, 1]"]
|
||||
19["Path<br>[2909, 2956, 1]"]
|
||||
50["Segment<br>[2964, 3301, 1]"]
|
||||
52["Segment<br>[3309, 3341, 1]"]
|
||||
55["Segment<br>[3349, 3690, 1]"]
|
||||
56["Segment<br>[3698, 3754, 1]"]
|
||||
59["Segment<br>[3762, 3769, 1]"]
|
||||
144[Solid2d]
|
||||
end
|
||||
subgraph path20 [Path]
|
||||
20["Path<br>[2891, 2938, 1]"]
|
||||
51["Segment<br>[2946, 3283, 1]"]
|
||||
53["Segment<br>[3291, 3323, 1]"]
|
||||
54["Segment<br>[3331, 3672, 1]"]
|
||||
57["Segment<br>[3680, 3736, 1]"]
|
||||
58["Segment<br>[3744, 3751, 1]"]
|
||||
20["Path<br>[2909, 2956, 1]"]
|
||||
51["Segment<br>[2964, 3301, 1]"]
|
||||
53["Segment<br>[3309, 3341, 1]"]
|
||||
54["Segment<br>[3349, 3690, 1]"]
|
||||
57["Segment<br>[3698, 3754, 1]"]
|
||||
58["Segment<br>[3762, 3769, 1]"]
|
||||
163[Solid2d]
|
||||
end
|
||||
subgraph path21 [Path]
|
||||
21["Path<br>[4361, 4456, 1]"]
|
||||
60["Segment<br>[4462, 4495, 1]"]
|
||||
61["Segment<br>[4501, 4552, 1]"]
|
||||
62["Segment<br>[4558, 4591, 1]"]
|
||||
63["Segment<br>[4597, 4647, 1]"]
|
||||
64["Segment<br>[4653, 4694, 1]"]
|
||||
65["Segment<br>[4700, 4749, 1]"]
|
||||
66["Segment<br>[4755, 4788, 1]"]
|
||||
67["Segment<br>[4794, 4828, 1]"]
|
||||
68["Segment<br>[4834, 4868, 1]"]
|
||||
69["Segment<br>[4874, 4926, 1]"]
|
||||
70["Segment<br>[4932, 4966, 1]"]
|
||||
71["Segment<br>[4972, 5048, 1]"]
|
||||
72["Segment<br>[5054, 5087, 1]"]
|
||||
73["Segment<br>[5093, 5169, 1]"]
|
||||
74["Segment<br>[5175, 5209, 1]"]
|
||||
75["Segment<br>[5215, 5289, 1]"]
|
||||
76["Segment<br>[5295, 5329, 1]"]
|
||||
77["Segment<br>[5335, 5386, 1]"]
|
||||
78["Segment<br>[5392, 5454, 1]"]
|
||||
79["Segment<br>[5460, 5511, 1]"]
|
||||
80["Segment<br>[5517, 5551, 1]"]
|
||||
81["Segment<br>[5557, 5590, 1]"]
|
||||
82["Segment<br>[5596, 5629, 1]"]
|
||||
83["Segment<br>[5635, 5642, 1]"]
|
||||
21["Path<br>[4379, 4474, 1]"]
|
||||
60["Segment<br>[4480, 4513, 1]"]
|
||||
61["Segment<br>[4519, 4570, 1]"]
|
||||
62["Segment<br>[4576, 4609, 1]"]
|
||||
63["Segment<br>[4615, 4665, 1]"]
|
||||
64["Segment<br>[4671, 4712, 1]"]
|
||||
65["Segment<br>[4718, 4767, 1]"]
|
||||
66["Segment<br>[4773, 4806, 1]"]
|
||||
67["Segment<br>[4812, 4846, 1]"]
|
||||
68["Segment<br>[4852, 4886, 1]"]
|
||||
69["Segment<br>[4892, 4944, 1]"]
|
||||
70["Segment<br>[4950, 4984, 1]"]
|
||||
71["Segment<br>[4990, 5066, 1]"]
|
||||
72["Segment<br>[5072, 5105, 1]"]
|
||||
73["Segment<br>[5111, 5187, 1]"]
|
||||
74["Segment<br>[5193, 5227, 1]"]
|
||||
75["Segment<br>[5233, 5307, 1]"]
|
||||
76["Segment<br>[5313, 5347, 1]"]
|
||||
77["Segment<br>[5353, 5404, 1]"]
|
||||
78["Segment<br>[5410, 5472, 1]"]
|
||||
79["Segment<br>[5478, 5529, 1]"]
|
||||
80["Segment<br>[5535, 5569, 1]"]
|
||||
81["Segment<br>[5575, 5608, 1]"]
|
||||
82["Segment<br>[5614, 5647, 1]"]
|
||||
83["Segment<br>[5653, 5660, 1]"]
|
||||
148[Solid2d]
|
||||
end
|
||||
subgraph path22 [Path]
|
||||
22["Path<br>[571, 622, 3]"]
|
||||
84["Segment<br>[571, 622, 3]"]
|
||||
22["Path<br>[589, 640, 3]"]
|
||||
84["Segment<br>[589, 640, 3]"]
|
||||
146[Solid2d]
|
||||
end
|
||||
subgraph path23 [Path]
|
||||
23["Path<br>[812, 868, 3]"]
|
||||
85["Segment<br>[812, 868, 3]"]
|
||||
23["Path<br>[830, 886, 3]"]
|
||||
85["Segment<br>[830, 886, 3]"]
|
||||
155[Solid2d]
|
||||
end
|
||||
subgraph path24 [Path]
|
||||
24["Path<br>[998, 1051, 3]"]
|
||||
86["Segment<br>[998, 1051, 3]"]
|
||||
24["Path<br>[1016, 1069, 3]"]
|
||||
86["Segment<br>[1016, 1069, 3]"]
|
||||
145[Solid2d]
|
||||
end
|
||||
subgraph path25 [Path]
|
||||
25["Path<br>[1439, 1479, 3]"]
|
||||
87["Segment<br>[1439, 1479, 3]"]
|
||||
25["Path<br>[1457, 1497, 3]"]
|
||||
87["Segment<br>[1457, 1497, 3]"]
|
||||
141[Solid2d]
|
||||
end
|
||||
subgraph path26 [Path]
|
||||
26["Path<br>[1588, 1639, 3]"]
|
||||
88["Segment<br>[1588, 1639, 3]"]
|
||||
26["Path<br>[1606, 1657, 3]"]
|
||||
88["Segment<br>[1606, 1657, 3]"]
|
||||
154[Solid2d]
|
||||
end
|
||||
subgraph path27 [Path]
|
||||
27["Path<br>[1777, 1830, 3]"]
|
||||
89["Segment<br>[1777, 1830, 3]"]
|
||||
27["Path<br>[1795, 1848, 3]"]
|
||||
89["Segment<br>[1795, 1848, 3]"]
|
||||
142[Solid2d]
|
||||
end
|
||||
subgraph path28 [Path]
|
||||
28["Path<br>[2078, 2150, 3]"]
|
||||
90["Segment<br>[2078, 2150, 3]"]
|
||||
28["Path<br>[2096, 2168, 3]"]
|
||||
90["Segment<br>[2096, 2168, 3]"]
|
||||
158[Solid2d]
|
||||
end
|
||||
subgraph path29 [Path]
|
||||
29["Path<br>[2412, 2443, 3]"]
|
||||
91["Segment<br>[2449, 2469, 3]"]
|
||||
92["Segment<br>[2475, 2495, 3]"]
|
||||
93["Segment<br>[2501, 2522, 3]"]
|
||||
94["Segment<br>[2528, 2584, 3]"]
|
||||
95["Segment<br>[2590, 2597, 3]"]
|
||||
29["Path<br>[2430, 2461, 3]"]
|
||||
91["Segment<br>[2467, 2487, 3]"]
|
||||
92["Segment<br>[2493, 2513, 3]"]
|
||||
93["Segment<br>[2519, 2540, 3]"]
|
||||
94["Segment<br>[2546, 2602, 3]"]
|
||||
95["Segment<br>[2608, 2615, 3]"]
|
||||
162[Solid2d]
|
||||
end
|
||||
subgraph path30 [Path]
|
||||
30["Path<br>[2904, 2936, 3]"]
|
||||
96["Segment<br>[2942, 2963, 3]"]
|
||||
97["Segment<br>[2969, 2989, 3]"]
|
||||
98["Segment<br>[2995, 3015, 3]"]
|
||||
99["Segment<br>[3021, 3077, 3]"]
|
||||
100["Segment<br>[3083, 3090, 3]"]
|
||||
30["Path<br>[2922, 2954, 3]"]
|
||||
96["Segment<br>[2960, 2981, 3]"]
|
||||
97["Segment<br>[2987, 3007, 3]"]
|
||||
98["Segment<br>[3013, 3033, 3]"]
|
||||
99["Segment<br>[3039, 3095, 3]"]
|
||||
100["Segment<br>[3101, 3108, 3]"]
|
||||
157[Solid2d]
|
||||
end
|
||||
subgraph path31 [Path]
|
||||
31["Path<br>[511, 592, 4]"]
|
||||
101["Segment<br>[598, 699, 4]"]
|
||||
102["Segment<br>[705, 763, 4]"]
|
||||
103["Segment<br>[769, 853, 4]"]
|
||||
104["Segment<br>[859, 918, 4]"]
|
||||
105["Segment<br>[924, 1009, 4]"]
|
||||
106["Segment<br>[1015, 1074, 4]"]
|
||||
107["Segment<br>[1080, 1203, 4]"]
|
||||
108["Segment<br>[1209, 1268, 4]"]
|
||||
109["Segment<br>[1274, 1409, 4]"]
|
||||
110["Segment<br>[1415, 1474, 4]"]
|
||||
111["Segment<br>[1480, 1604, 4]"]
|
||||
112["Segment<br>[1610, 1669, 4]"]
|
||||
113["Segment<br>[1675, 1760, 4]"]
|
||||
114["Segment<br>[1766, 1825, 4]"]
|
||||
115["Segment<br>[1831, 1916, 4]"]
|
||||
116["Segment<br>[1922, 1980, 4]"]
|
||||
117["Segment<br>[1986, 1993, 4]"]
|
||||
31["Path<br>[529, 610, 4]"]
|
||||
101["Segment<br>[616, 717, 4]"]
|
||||
102["Segment<br>[723, 781, 4]"]
|
||||
103["Segment<br>[787, 871, 4]"]
|
||||
104["Segment<br>[877, 936, 4]"]
|
||||
105["Segment<br>[942, 1027, 4]"]
|
||||
106["Segment<br>[1033, 1092, 4]"]
|
||||
107["Segment<br>[1098, 1221, 4]"]
|
||||
108["Segment<br>[1227, 1286, 4]"]
|
||||
109["Segment<br>[1292, 1427, 4]"]
|
||||
110["Segment<br>[1433, 1492, 4]"]
|
||||
111["Segment<br>[1498, 1622, 4]"]
|
||||
112["Segment<br>[1628, 1687, 4]"]
|
||||
113["Segment<br>[1693, 1778, 4]"]
|
||||
114["Segment<br>[1784, 1843, 4]"]
|
||||
115["Segment<br>[1849, 1934, 4]"]
|
||||
116["Segment<br>[1940, 1998, 4]"]
|
||||
117["Segment<br>[2004, 2011, 4]"]
|
||||
156[Solid2d]
|
||||
end
|
||||
subgraph path32 [Path]
|
||||
32["Path<br>[693, 733, 5]"]
|
||||
118["Segment<br>[741, 788, 5]"]
|
||||
119["Segment<br>[796, 832, 5]"]
|
||||
120["Segment<br>[840, 870, 5]"]
|
||||
121["Segment<br>[878, 917, 5]"]
|
||||
122["Segment<br>[925, 965, 5]"]
|
||||
123["Segment<br>[973, 1008, 5]"]
|
||||
124["Segment<br>[1016, 1054, 5]"]
|
||||
125["Segment<br>[1062, 1084, 5]"]
|
||||
126["Segment<br>[1092, 1099, 5]"]
|
||||
32["Path<br>[711, 751, 5]"]
|
||||
118["Segment<br>[759, 806, 5]"]
|
||||
119["Segment<br>[814, 850, 5]"]
|
||||
120["Segment<br>[858, 888, 5]"]
|
||||
121["Segment<br>[896, 935, 5]"]
|
||||
122["Segment<br>[943, 983, 5]"]
|
||||
123["Segment<br>[991, 1026, 5]"]
|
||||
124["Segment<br>[1034, 1072, 5]"]
|
||||
125["Segment<br>[1080, 1102, 5]"]
|
||||
126["Segment<br>[1110, 1117, 5]"]
|
||||
152[Solid2d]
|
||||
end
|
||||
subgraph path33 [Path]
|
||||
33["Path<br>[487, 544, 6]"]
|
||||
127["Segment<br>[550, 684, 6]"]
|
||||
128["Segment<br>[690, 737, 6]"]
|
||||
129["Segment<br>[743, 840, 6]"]
|
||||
130["Segment<br>[846, 878, 6]"]
|
||||
131["Segment<br>[884, 916, 6]"]
|
||||
132["Segment<br>[922, 953, 6]"]
|
||||
133["Segment<br>[959, 1074, 6]"]
|
||||
134["Segment<br>[1080, 1112, 6]"]
|
||||
135["Segment<br>[1118, 1150, 6]"]
|
||||
136["Segment<br>[1156, 1187, 6]"]
|
||||
137["Segment<br>[1193, 1286, 6]"]
|
||||
138["Segment<br>[1292, 1339, 6]"]
|
||||
139["Segment<br>[1345, 1418, 6]"]
|
||||
140["Segment<br>[1424, 1431, 6]"]
|
||||
33["Path<br>[505, 562, 6]"]
|
||||
127["Segment<br>[568, 702, 6]"]
|
||||
128["Segment<br>[708, 755, 6]"]
|
||||
129["Segment<br>[761, 858, 6]"]
|
||||
130["Segment<br>[864, 896, 6]"]
|
||||
131["Segment<br>[902, 934, 6]"]
|
||||
132["Segment<br>[940, 971, 6]"]
|
||||
133["Segment<br>[977, 1092, 6]"]
|
||||
134["Segment<br>[1098, 1130, 6]"]
|
||||
135["Segment<br>[1136, 1168, 6]"]
|
||||
136["Segment<br>[1174, 1205, 6]"]
|
||||
137["Segment<br>[1211, 1304, 6]"]
|
||||
138["Segment<br>[1310, 1357, 6]"]
|
||||
139["Segment<br>[1363, 1436, 6]"]
|
||||
140["Segment<br>[1442, 1449, 6]"]
|
||||
160[Solid2d]
|
||||
end
|
||||
1["Plane<br>[331, 348, 1]"]
|
||||
2["Plane<br>[1666, 1683, 1]"]
|
||||
3["Plane<br>[2084, 2101, 1]"]
|
||||
4["Plane<br>[2860, 2883, 1]"]
|
||||
5["Plane<br>[2860, 2883, 1]"]
|
||||
6["Plane<br>[4338, 4355, 1]"]
|
||||
7["Plane<br>[548, 565, 3]"]
|
||||
8["Plane<br>[488, 505, 4]"]
|
||||
9["Plane<br>[659, 685, 5]"]
|
||||
10["Plane<br>[464, 481, 6]"]
|
||||
164["Sweep Extrusion<br>[497, 530, 1]"]
|
||||
165["Sweep Extrusion<br>[800, 833, 1]"]
|
||||
166["Sweep Extrusion<br>[1140, 1174, 1]"]
|
||||
167["Sweep Extrusion<br>[1140, 1174, 1]"]
|
||||
168["Sweep Extrusion<br>[1140, 1174, 1]"]
|
||||
169["Sweep Extrusion<br>[1140, 1174, 1]"]
|
||||
170["Sweep Extrusion<br>[1140, 1174, 1]"]
|
||||
171["Sweep Extrusion<br>[1478, 1512, 1]"]
|
||||
172["Sweep Extrusion<br>[1478, 1512, 1]"]
|
||||
173["Sweep Extrusion<br>[1478, 1512, 1]"]
|
||||
174["Sweep Extrusion<br>[1478, 1512, 1]"]
|
||||
175["Sweep Extrusion<br>[1478, 1512, 1]"]
|
||||
176["Sweep Revolve<br>[1981, 1998, 1]"]
|
||||
177["Sweep Revolve<br>[2416, 2433, 1]"]
|
||||
178["Sweep Extrusion<br>[3799, 3845, 1]"]
|
||||
179["Sweep Extrusion<br>[3799, 3845, 1]"]
|
||||
180["Sweep Revolve<br>[5648, 5665, 1]"]
|
||||
181["Sweep Extrusion<br>[631, 687, 3]"]
|
||||
182["Sweep Extrusion<br>[881, 943, 3]"]
|
||||
183["Sweep Extrusion<br>[1198, 1277, 3]"]
|
||||
184["Sweep Extrusion<br>[1198, 1277, 3]"]
|
||||
185["Sweep Extrusion<br>[1198, 1277, 3]"]
|
||||
186["Sweep Extrusion<br>[1198, 1277, 3]"]
|
||||
187["Sweep Extrusion<br>[1198, 1277, 3]"]
|
||||
188["Sweep Extrusion<br>[1485, 1518, 3]"]
|
||||
189["Sweep Extrusion<br>[1654, 1719, 3]"]
|
||||
190["Sweep Extrusion<br>[1977, 2021, 3]"]
|
||||
191["Sweep Extrusion<br>[1977, 2021, 3]"]
|
||||
192["Sweep Extrusion<br>[1977, 2021, 3]"]
|
||||
193["Sweep Extrusion<br>[1977, 2021, 3]"]
|
||||
194["Sweep Extrusion<br>[1977, 2021, 3]"]
|
||||
195["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
196["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
197["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
198["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
199["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
200["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
201["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
202["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
203["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
204["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
205["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
206["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
207["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
208["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
209["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
210["Sweep Extrusion<br>[2305, 2349, 3]"]
|
||||
211["Sweep Extrusion<br>[2763, 2831, 3]"]
|
||||
212["Sweep Extrusion<br>[2763, 2831, 3]"]
|
||||
213["Sweep Extrusion<br>[2763, 2831, 3]"]
|
||||
214["Sweep Extrusion<br>[2763, 2831, 3]"]
|
||||
215["Sweep Extrusion<br>[2763, 2831, 3]"]
|
||||
216["Sweep Extrusion<br>[3253, 3327, 3]"]
|
||||
217["Sweep Extrusion<br>[3253, 3327, 3]"]
|
||||
218["Sweep Extrusion<br>[3253, 3327, 3]"]
|
||||
219["Sweep Extrusion<br>[3253, 3327, 3]"]
|
||||
220["Sweep Extrusion<br>[3253, 3327, 3]"]
|
||||
221["Sweep Revolve<br>[2031, 2081, 4]"]
|
||||
222["Sweep Revolve<br>[1107, 1124, 5]"]
|
||||
223["Sweep Revolve<br>[1484, 1513, 6]"]
|
||||
1["Plane<br>[349, 366, 1]"]
|
||||
2["Plane<br>[1684, 1701, 1]"]
|
||||
3["Plane<br>[2102, 2119, 1]"]
|
||||
4["Plane<br>[2878, 2901, 1]"]
|
||||
5["Plane<br>[2878, 2901, 1]"]
|
||||
6["Plane<br>[4356, 4373, 1]"]
|
||||
7["Plane<br>[566, 583, 3]"]
|
||||
8["Plane<br>[506, 523, 4]"]
|
||||
9["Plane<br>[677, 703, 5]"]
|
||||
10["Plane<br>[482, 499, 6]"]
|
||||
164["Sweep Extrusion<br>[515, 548, 1]"]
|
||||
165["Sweep Extrusion<br>[818, 851, 1]"]
|
||||
166["Sweep Extrusion<br>[1158, 1192, 1]"]
|
||||
167["Sweep Extrusion<br>[1158, 1192, 1]"]
|
||||
168["Sweep Extrusion<br>[1158, 1192, 1]"]
|
||||
169["Sweep Extrusion<br>[1158, 1192, 1]"]
|
||||
170["Sweep Extrusion<br>[1158, 1192, 1]"]
|
||||
171["Sweep Extrusion<br>[1496, 1530, 1]"]
|
||||
172["Sweep Extrusion<br>[1496, 1530, 1]"]
|
||||
173["Sweep Extrusion<br>[1496, 1530, 1]"]
|
||||
174["Sweep Extrusion<br>[1496, 1530, 1]"]
|
||||
175["Sweep Extrusion<br>[1496, 1530, 1]"]
|
||||
176["Sweep Revolve<br>[1999, 2016, 1]"]
|
||||
177["Sweep Revolve<br>[2434, 2451, 1]"]
|
||||
178["Sweep Extrusion<br>[3817, 3863, 1]"]
|
||||
179["Sweep Extrusion<br>[3817, 3863, 1]"]
|
||||
180["Sweep Revolve<br>[5666, 5683, 1]"]
|
||||
181["Sweep Extrusion<br>[649, 705, 3]"]
|
||||
182["Sweep Extrusion<br>[899, 961, 3]"]
|
||||
183["Sweep Extrusion<br>[1216, 1295, 3]"]
|
||||
184["Sweep Extrusion<br>[1216, 1295, 3]"]
|
||||
185["Sweep Extrusion<br>[1216, 1295, 3]"]
|
||||
186["Sweep Extrusion<br>[1216, 1295, 3]"]
|
||||
187["Sweep Extrusion<br>[1216, 1295, 3]"]
|
||||
188["Sweep Extrusion<br>[1503, 1536, 3]"]
|
||||
189["Sweep Extrusion<br>[1672, 1737, 3]"]
|
||||
190["Sweep Extrusion<br>[1995, 2039, 3]"]
|
||||
191["Sweep Extrusion<br>[1995, 2039, 3]"]
|
||||
192["Sweep Extrusion<br>[1995, 2039, 3]"]
|
||||
193["Sweep Extrusion<br>[1995, 2039, 3]"]
|
||||
194["Sweep Extrusion<br>[1995, 2039, 3]"]
|
||||
195["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
196["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
197["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
198["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
199["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
200["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
201["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
202["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
203["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
204["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
205["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
206["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
207["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
208["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
209["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
210["Sweep Extrusion<br>[2323, 2367, 3]"]
|
||||
211["Sweep Extrusion<br>[2781, 2849, 3]"]
|
||||
212["Sweep Extrusion<br>[2781, 2849, 3]"]
|
||||
213["Sweep Extrusion<br>[2781, 2849, 3]"]
|
||||
214["Sweep Extrusion<br>[2781, 2849, 3]"]
|
||||
215["Sweep Extrusion<br>[2781, 2849, 3]"]
|
||||
216["Sweep Extrusion<br>[3271, 3345, 3]"]
|
||||
217["Sweep Extrusion<br>[3271, 3345, 3]"]
|
||||
218["Sweep Extrusion<br>[3271, 3345, 3]"]
|
||||
219["Sweep Extrusion<br>[3271, 3345, 3]"]
|
||||
220["Sweep Extrusion<br>[3271, 3345, 3]"]
|
||||
221["Sweep Revolve<br>[2049, 2099, 4]"]
|
||||
222["Sweep Revolve<br>[1125, 1142, 5]"]
|
||||
223["Sweep Revolve<br>[1502, 1531, 6]"]
|
||||
224[Wall]
|
||||
225[Wall]
|
||||
226[Wall]
|
||||
|
||||
@ -775,6 +775,31 @@ description: Result of parsing car-wheel-assembly.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,71 +1,71 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path7 [Path]
|
||||
7["Path<br>[773, 813, 0]"]
|
||||
16["Segment<br>[821, 886, 0]"]
|
||||
21["Segment<br>[894, 991, 0]"]
|
||||
25["Segment<br>[999, 1116, 0]"]
|
||||
35["Segment<br>[1124, 1180, 0]"]
|
||||
40["Segment<br>[1188, 1195, 0]"]
|
||||
7["Path<br>[791, 831, 0]"]
|
||||
16["Segment<br>[839, 904, 0]"]
|
||||
21["Segment<br>[912, 1009, 0]"]
|
||||
25["Segment<br>[1017, 1134, 0]"]
|
||||
35["Segment<br>[1142, 1198, 0]"]
|
||||
40["Segment<br>[1206, 1213, 0]"]
|
||||
43[Solid2d]
|
||||
end
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[773, 813, 0]"]
|
||||
15["Segment<br>[821, 886, 0]"]
|
||||
19["Segment<br>[894, 991, 0]"]
|
||||
30["Segment<br>[999, 1116, 0]"]
|
||||
31["Segment<br>[1124, 1180, 0]"]
|
||||
41["Segment<br>[1188, 1195, 0]"]
|
||||
8["Path<br>[791, 831, 0]"]
|
||||
15["Segment<br>[839, 904, 0]"]
|
||||
19["Segment<br>[912, 1009, 0]"]
|
||||
30["Segment<br>[1017, 1134, 0]"]
|
||||
31["Segment<br>[1142, 1198, 0]"]
|
||||
41["Segment<br>[1206, 1213, 0]"]
|
||||
44[Solid2d]
|
||||
end
|
||||
subgraph path9 [Path]
|
||||
9["Path<br>[773, 813, 0]"]
|
||||
18["Segment<br>[821, 886, 0]"]
|
||||
23["Segment<br>[894, 991, 0]"]
|
||||
26["Segment<br>[999, 1116, 0]"]
|
||||
33["Segment<br>[1124, 1180, 0]"]
|
||||
37["Segment<br>[1188, 1195, 0]"]
|
||||
9["Path<br>[791, 831, 0]"]
|
||||
18["Segment<br>[839, 904, 0]"]
|
||||
23["Segment<br>[912, 1009, 0]"]
|
||||
26["Segment<br>[1017, 1134, 0]"]
|
||||
33["Segment<br>[1142, 1198, 0]"]
|
||||
37["Segment<br>[1206, 1213, 0]"]
|
||||
45[Solid2d]
|
||||
end
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[773, 813, 0]"]
|
||||
14["Segment<br>[821, 886, 0]"]
|
||||
24["Segment<br>[894, 991, 0]"]
|
||||
28["Segment<br>[999, 1116, 0]"]
|
||||
34["Segment<br>[1124, 1180, 0]"]
|
||||
38["Segment<br>[1188, 1195, 0]"]
|
||||
10["Path<br>[791, 831, 0]"]
|
||||
14["Segment<br>[839, 904, 0]"]
|
||||
24["Segment<br>[912, 1009, 0]"]
|
||||
28["Segment<br>[1017, 1134, 0]"]
|
||||
34["Segment<br>[1142, 1198, 0]"]
|
||||
38["Segment<br>[1206, 1213, 0]"]
|
||||
46[Solid2d]
|
||||
end
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[773, 813, 0]"]
|
||||
13["Segment<br>[821, 886, 0]"]
|
||||
22["Segment<br>[894, 991, 0]"]
|
||||
27["Segment<br>[999, 1116, 0]"]
|
||||
32["Segment<br>[1124, 1180, 0]"]
|
||||
39["Segment<br>[1188, 1195, 0]"]
|
||||
11["Path<br>[791, 831, 0]"]
|
||||
13["Segment<br>[839, 904, 0]"]
|
||||
22["Segment<br>[912, 1009, 0]"]
|
||||
27["Segment<br>[1017, 1134, 0]"]
|
||||
32["Segment<br>[1142, 1198, 0]"]
|
||||
39["Segment<br>[1206, 1213, 0]"]
|
||||
47[Solid2d]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[773, 813, 0]"]
|
||||
17["Segment<br>[821, 886, 0]"]
|
||||
20["Segment<br>[894, 991, 0]"]
|
||||
29["Segment<br>[999, 1116, 0]"]
|
||||
36["Segment<br>[1124, 1180, 0]"]
|
||||
42["Segment<br>[1188, 1195, 0]"]
|
||||
12["Path<br>[791, 831, 0]"]
|
||||
17["Segment<br>[839, 904, 0]"]
|
||||
20["Segment<br>[912, 1009, 0]"]
|
||||
29["Segment<br>[1017, 1134, 0]"]
|
||||
36["Segment<br>[1142, 1198, 0]"]
|
||||
42["Segment<br>[1206, 1213, 0]"]
|
||||
48[Solid2d]
|
||||
end
|
||||
1["Plane<br>[356, 390, 0]"]
|
||||
2["Plane<br>[405, 440, 0]"]
|
||||
3["Plane<br>[454, 489, 0]"]
|
||||
4["Plane<br>[504, 540, 0]"]
|
||||
5["Plane<br>[552, 602, 0]"]
|
||||
6["Plane<br>[615, 650, 0]"]
|
||||
49["Sweep Extrusion<br>[1203, 1234, 0]"]
|
||||
50["Sweep Extrusion<br>[1203, 1234, 0]"]
|
||||
51["Sweep Extrusion<br>[1203, 1234, 0]"]
|
||||
52["Sweep Extrusion<br>[1203, 1234, 0]"]
|
||||
53["Sweep Extrusion<br>[1203, 1234, 0]"]
|
||||
54["Sweep Extrusion<br>[1203, 1234, 0]"]
|
||||
1["Plane<br>[374, 408, 0]"]
|
||||
2["Plane<br>[423, 458, 0]"]
|
||||
3["Plane<br>[472, 507, 0]"]
|
||||
4["Plane<br>[522, 558, 0]"]
|
||||
5["Plane<br>[570, 620, 0]"]
|
||||
6["Plane<br>[633, 668, 0]"]
|
||||
49["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||
50["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||
51["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||
52["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||
53["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||
54["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||
55[Wall]
|
||||
56[Wall]
|
||||
57[Wall]
|
||||
|
||||
@ -2137,6 +2137,31 @@ description: Result of parsing color-cube.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,54 +1,54 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path7 [Path]
|
||||
7["Path<br>[645, 835, 0]"]
|
||||
13["Segment<br>[845, 929, 0]"]
|
||||
16["Segment<br>[939, 991, 0]"]
|
||||
17["Segment<br>[1001, 1048, 0]"]
|
||||
19["Segment<br>[1058, 1110, 0]"]
|
||||
21["Segment<br>[1120, 1167, 0]"]
|
||||
23["Segment<br>[1177, 1242, 0]"]
|
||||
27["Segment<br>[1252, 1260, 0]"]
|
||||
7["Path<br>[663, 853, 0]"]
|
||||
13["Segment<br>[863, 947, 0]"]
|
||||
16["Segment<br>[957, 1009, 0]"]
|
||||
17["Segment<br>[1019, 1066, 0]"]
|
||||
19["Segment<br>[1076, 1128, 0]"]
|
||||
21["Segment<br>[1138, 1185, 0]"]
|
||||
23["Segment<br>[1195, 1260, 0]"]
|
||||
27["Segment<br>[1270, 1278, 0]"]
|
||||
31[Solid2d]
|
||||
end
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[645, 835, 0]"]
|
||||
26["Segment<br>[1252, 1260, 0]"]
|
||||
8["Path<br>[663, 853, 0]"]
|
||||
26["Segment<br>[1270, 1278, 0]"]
|
||||
32[Solid2d]
|
||||
end
|
||||
subgraph path9 [Path]
|
||||
9["Path<br>[645, 835, 0]"]
|
||||
14["Segment<br>[845, 929, 0]"]
|
||||
15["Segment<br>[939, 991, 0]"]
|
||||
18["Segment<br>[1001, 1048, 0]"]
|
||||
20["Segment<br>[1058, 1110, 0]"]
|
||||
22["Segment<br>[1120, 1167, 0]"]
|
||||
24["Segment<br>[1177, 1242, 0]"]
|
||||
25["Segment<br>[1252, 1260, 0]"]
|
||||
9["Path<br>[663, 853, 0]"]
|
||||
14["Segment<br>[863, 947, 0]"]
|
||||
15["Segment<br>[957, 1009, 0]"]
|
||||
18["Segment<br>[1019, 1066, 0]"]
|
||||
20["Segment<br>[1076, 1128, 0]"]
|
||||
22["Segment<br>[1138, 1185, 0]"]
|
||||
24["Segment<br>[1195, 1260, 0]"]
|
||||
25["Segment<br>[1270, 1278, 0]"]
|
||||
36[Solid2d]
|
||||
end
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[1288, 1338, 0]"]
|
||||
29["Segment<br>[1288, 1338, 0]"]
|
||||
10["Path<br>[1306, 1356, 0]"]
|
||||
29["Segment<br>[1306, 1356, 0]"]
|
||||
33[Solid2d]
|
||||
end
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[1288, 1338, 0]"]
|
||||
30["Segment<br>[1288, 1338, 0]"]
|
||||
11["Path<br>[1306, 1356, 0]"]
|
||||
30["Segment<br>[1306, 1356, 0]"]
|
||||
34[Solid2d]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[1288, 1338, 0]"]
|
||||
28["Segment<br>[1288, 1338, 0]"]
|
||||
12["Path<br>[1306, 1356, 0]"]
|
||||
28["Segment<br>[1306, 1356, 0]"]
|
||||
35[Solid2d]
|
||||
end
|
||||
1["Plane<br>[601, 634, 0]"]
|
||||
2["Plane<br>[601, 634, 0]"]
|
||||
3["Plane<br>[601, 634, 0]"]
|
||||
4["StartSketchOnPlane<br>[587, 635, 0]"]
|
||||
5["StartSketchOnPlane<br>[587, 635, 0]"]
|
||||
6["StartSketchOnPlane<br>[587, 635, 0]"]
|
||||
37["Sweep Loft<br>[1465, 1554, 0]"]
|
||||
1["Plane<br>[619, 652, 0]"]
|
||||
2["Plane<br>[619, 652, 0]"]
|
||||
3["Plane<br>[619, 652, 0]"]
|
||||
4["StartSketchOnPlane<br>[605, 653, 0]"]
|
||||
5["StartSketchOnPlane<br>[605, 653, 0]"]
|
||||
6["StartSketchOnPlane<br>[605, 653, 0]"]
|
||||
37["Sweep Loft<br>[1483, 1572, 0]"]
|
||||
38[Wall]
|
||||
39[Wall]
|
||||
40[Wall]
|
||||
|
||||
@ -1914,6 +1914,31 @@ description: Result of parsing cycloidal-gear.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,136 +1,136 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path13 [Path]
|
||||
13["Path<br>[497, 548, 0]"]
|
||||
31["Segment<br>[556, 607, 0]"]
|
||||
38["Segment<br>[615, 665, 0]"]
|
||||
59["Segment<br>[673, 724, 0]"]
|
||||
67["Segment<br>[732, 739, 0]"]
|
||||
13["Path<br>[515, 566, 0]"]
|
||||
31["Segment<br>[574, 625, 0]"]
|
||||
38["Segment<br>[633, 683, 0]"]
|
||||
59["Segment<br>[691, 742, 0]"]
|
||||
67["Segment<br>[750, 757, 0]"]
|
||||
73[Solid2d]
|
||||
end
|
||||
subgraph path14 [Path]
|
||||
14["Path<br>[497, 548, 0]"]
|
||||
27["Segment<br>[556, 607, 0]"]
|
||||
45["Segment<br>[615, 665, 0]"]
|
||||
50["Segment<br>[673, 724, 0]"]
|
||||
65["Segment<br>[732, 739, 0]"]
|
||||
14["Path<br>[515, 566, 0]"]
|
||||
27["Segment<br>[574, 625, 0]"]
|
||||
45["Segment<br>[633, 683, 0]"]
|
||||
50["Segment<br>[691, 742, 0]"]
|
||||
65["Segment<br>[750, 757, 0]"]
|
||||
74[Solid2d]
|
||||
end
|
||||
subgraph path15 [Path]
|
||||
15["Path<br>[497, 548, 0]"]
|
||||
32["Segment<br>[556, 607, 0]"]
|
||||
48["Segment<br>[615, 665, 0]"]
|
||||
51["Segment<br>[673, 724, 0]"]
|
||||
71["Segment<br>[732, 739, 0]"]
|
||||
15["Path<br>[515, 566, 0]"]
|
||||
32["Segment<br>[574, 625, 0]"]
|
||||
48["Segment<br>[633, 683, 0]"]
|
||||
51["Segment<br>[691, 742, 0]"]
|
||||
71["Segment<br>[750, 757, 0]"]
|
||||
75[Solid2d]
|
||||
end
|
||||
subgraph path16 [Path]
|
||||
16["Path<br>[497, 548, 0]"]
|
||||
29["Segment<br>[556, 607, 0]"]
|
||||
40["Segment<br>[615, 665, 0]"]
|
||||
56["Segment<br>[673, 724, 0]"]
|
||||
69["Segment<br>[732, 739, 0]"]
|
||||
16["Path<br>[515, 566, 0]"]
|
||||
29["Segment<br>[574, 625, 0]"]
|
||||
40["Segment<br>[633, 683, 0]"]
|
||||
56["Segment<br>[691, 742, 0]"]
|
||||
69["Segment<br>[750, 757, 0]"]
|
||||
76[Solid2d]
|
||||
end
|
||||
subgraph path17 [Path]
|
||||
17["Path<br>[497, 548, 0]"]
|
||||
26["Segment<br>[556, 607, 0]"]
|
||||
44["Segment<br>[615, 665, 0]"]
|
||||
52["Segment<br>[673, 724, 0]"]
|
||||
63["Segment<br>[732, 739, 0]"]
|
||||
17["Path<br>[515, 566, 0]"]
|
||||
26["Segment<br>[574, 625, 0]"]
|
||||
44["Segment<br>[633, 683, 0]"]
|
||||
52["Segment<br>[691, 742, 0]"]
|
||||
63["Segment<br>[750, 757, 0]"]
|
||||
77[Solid2d]
|
||||
end
|
||||
subgraph path18 [Path]
|
||||
18["Path<br>[497, 548, 0]"]
|
||||
28["Segment<br>[556, 607, 0]"]
|
||||
47["Segment<br>[615, 665, 0]"]
|
||||
58["Segment<br>[673, 724, 0]"]
|
||||
64["Segment<br>[732, 739, 0]"]
|
||||
18["Path<br>[515, 566, 0]"]
|
||||
28["Segment<br>[574, 625, 0]"]
|
||||
47["Segment<br>[633, 683, 0]"]
|
||||
58["Segment<br>[691, 742, 0]"]
|
||||
64["Segment<br>[750, 757, 0]"]
|
||||
78[Solid2d]
|
||||
end
|
||||
subgraph path19 [Path]
|
||||
19["Path<br>[497, 548, 0]"]
|
||||
35["Segment<br>[556, 607, 0]"]
|
||||
41["Segment<br>[615, 665, 0]"]
|
||||
57["Segment<br>[673, 724, 0]"]
|
||||
66["Segment<br>[732, 739, 0]"]
|
||||
19["Path<br>[515, 566, 0]"]
|
||||
35["Segment<br>[574, 625, 0]"]
|
||||
41["Segment<br>[633, 683, 0]"]
|
||||
57["Segment<br>[691, 742, 0]"]
|
||||
66["Segment<br>[750, 757, 0]"]
|
||||
79[Solid2d]
|
||||
end
|
||||
subgraph path20 [Path]
|
||||
20["Path<br>[497, 548, 0]"]
|
||||
34["Segment<br>[556, 607, 0]"]
|
||||
42["Segment<br>[615, 665, 0]"]
|
||||
55["Segment<br>[673, 724, 0]"]
|
||||
68["Segment<br>[732, 739, 0]"]
|
||||
20["Path<br>[515, 566, 0]"]
|
||||
34["Segment<br>[574, 625, 0]"]
|
||||
42["Segment<br>[633, 683, 0]"]
|
||||
55["Segment<br>[691, 742, 0]"]
|
||||
68["Segment<br>[750, 757, 0]"]
|
||||
80[Solid2d]
|
||||
end
|
||||
subgraph path21 [Path]
|
||||
21["Path<br>[497, 548, 0]"]
|
||||
30["Segment<br>[556, 607, 0]"]
|
||||
39["Segment<br>[615, 665, 0]"]
|
||||
60["Segment<br>[673, 724, 0]"]
|
||||
70["Segment<br>[732, 739, 0]"]
|
||||
21["Path<br>[515, 566, 0]"]
|
||||
30["Segment<br>[574, 625, 0]"]
|
||||
39["Segment<br>[633, 683, 0]"]
|
||||
60["Segment<br>[691, 742, 0]"]
|
||||
70["Segment<br>[750, 757, 0]"]
|
||||
81[Solid2d]
|
||||
end
|
||||
subgraph path22 [Path]
|
||||
22["Path<br>[497, 548, 0]"]
|
||||
25["Segment<br>[556, 607, 0]"]
|
||||
46["Segment<br>[615, 665, 0]"]
|
||||
54["Segment<br>[673, 724, 0]"]
|
||||
72["Segment<br>[732, 739, 0]"]
|
||||
22["Path<br>[515, 566, 0]"]
|
||||
25["Segment<br>[574, 625, 0]"]
|
||||
46["Segment<br>[633, 683, 0]"]
|
||||
54["Segment<br>[691, 742, 0]"]
|
||||
72["Segment<br>[750, 757, 0]"]
|
||||
82[Solid2d]
|
||||
end
|
||||
subgraph path23 [Path]
|
||||
23["Path<br>[497, 548, 0]"]
|
||||
36["Segment<br>[556, 607, 0]"]
|
||||
37["Segment<br>[615, 665, 0]"]
|
||||
49["Segment<br>[673, 724, 0]"]
|
||||
62["Segment<br>[732, 739, 0]"]
|
||||
23["Path<br>[515, 566, 0]"]
|
||||
36["Segment<br>[574, 625, 0]"]
|
||||
37["Segment<br>[633, 683, 0]"]
|
||||
49["Segment<br>[691, 742, 0]"]
|
||||
62["Segment<br>[750, 757, 0]"]
|
||||
83[Solid2d]
|
||||
end
|
||||
subgraph path24 [Path]
|
||||
24["Path<br>[497, 548, 0]"]
|
||||
33["Segment<br>[556, 607, 0]"]
|
||||
43["Segment<br>[615, 665, 0]"]
|
||||
53["Segment<br>[673, 724, 0]"]
|
||||
61["Segment<br>[732, 739, 0]"]
|
||||
24["Path<br>[515, 566, 0]"]
|
||||
33["Segment<br>[574, 625, 0]"]
|
||||
43["Segment<br>[633, 683, 0]"]
|
||||
53["Segment<br>[691, 742, 0]"]
|
||||
61["Segment<br>[750, 757, 0]"]
|
||||
84[Solid2d]
|
||||
end
|
||||
1["Plane<br>[472, 489, 0]"]
|
||||
2["Plane<br>[472, 489, 0]"]
|
||||
3["Plane<br>[472, 489, 0]"]
|
||||
4["Plane<br>[472, 489, 0]"]
|
||||
5["Plane<br>[472, 489, 0]"]
|
||||
6["Plane<br>[472, 489, 0]"]
|
||||
7["Plane<br>[472, 489, 0]"]
|
||||
8["Plane<br>[472, 489, 0]"]
|
||||
9["Plane<br>[472, 489, 0]"]
|
||||
10["Plane<br>[472, 489, 0]"]
|
||||
11["Plane<br>[472, 489, 0]"]
|
||||
12["Plane<br>[472, 489, 0]"]
|
||||
85["Sweep Extrusion<br>[753, 803, 0]"]
|
||||
86["Sweep Extrusion<br>[753, 803, 0]"]
|
||||
87["Sweep Extrusion<br>[753, 803, 0]"]
|
||||
88["Sweep Extrusion<br>[753, 803, 0]"]
|
||||
89["Sweep Extrusion<br>[753, 803, 0]"]
|
||||
90["Sweep Extrusion<br>[753, 803, 0]"]
|
||||
91["Sweep Extrusion<br>[753, 803, 0]"]
|
||||
92["Sweep Extrusion<br>[753, 803, 0]"]
|
||||
93["Sweep Extrusion<br>[753, 803, 0]"]
|
||||
94["Sweep Extrusion<br>[753, 803, 0]"]
|
||||
95["Sweep Extrusion<br>[753, 803, 0]"]
|
||||
96["Sweep Extrusion<br>[753, 803, 0]"]
|
||||
97["CompositeSolid Intersect<br>[2000, 2030, 0]"]
|
||||
98["CompositeSolid Intersect<br>[2000, 2030, 0]"]
|
||||
99["CompositeSolid Intersect<br>[2000, 2030, 0]"]
|
||||
100["CompositeSolid Intersect<br>[2000, 2030, 0]"]
|
||||
101["CompositeSolid Intersect<br>[2000, 2030, 0]"]
|
||||
102["CompositeSolid Intersect<br>[2000, 2030, 0]"]
|
||||
103["CompositeSolid Intersect<br>[2000, 2030, 0]"]
|
||||
104["CompositeSolid Intersect<br>[2000, 2030, 0]"]
|
||||
105["CompositeSolid Intersect<br>[2000, 2030, 0]"]
|
||||
106["CompositeSolid Intersect<br>[2000, 2030, 0]"]
|
||||
107["CompositeSolid Intersect<br>[2000, 2030, 0]"]
|
||||
1["Plane<br>[490, 507, 0]"]
|
||||
2["Plane<br>[490, 507, 0]"]
|
||||
3["Plane<br>[490, 507, 0]"]
|
||||
4["Plane<br>[490, 507, 0]"]
|
||||
5["Plane<br>[490, 507, 0]"]
|
||||
6["Plane<br>[490, 507, 0]"]
|
||||
7["Plane<br>[490, 507, 0]"]
|
||||
8["Plane<br>[490, 507, 0]"]
|
||||
9["Plane<br>[490, 507, 0]"]
|
||||
10["Plane<br>[490, 507, 0]"]
|
||||
11["Plane<br>[490, 507, 0]"]
|
||||
12["Plane<br>[490, 507, 0]"]
|
||||
85["Sweep Extrusion<br>[771, 821, 0]"]
|
||||
86["Sweep Extrusion<br>[771, 821, 0]"]
|
||||
87["Sweep Extrusion<br>[771, 821, 0]"]
|
||||
88["Sweep Extrusion<br>[771, 821, 0]"]
|
||||
89["Sweep Extrusion<br>[771, 821, 0]"]
|
||||
90["Sweep Extrusion<br>[771, 821, 0]"]
|
||||
91["Sweep Extrusion<br>[771, 821, 0]"]
|
||||
92["Sweep Extrusion<br>[771, 821, 0]"]
|
||||
93["Sweep Extrusion<br>[771, 821, 0]"]
|
||||
94["Sweep Extrusion<br>[771, 821, 0]"]
|
||||
95["Sweep Extrusion<br>[771, 821, 0]"]
|
||||
96["Sweep Extrusion<br>[771, 821, 0]"]
|
||||
97["CompositeSolid Intersect<br>[2018, 2048, 0]"]
|
||||
98["CompositeSolid Intersect<br>[2018, 2048, 0]"]
|
||||
99["CompositeSolid Intersect<br>[2018, 2048, 0]"]
|
||||
100["CompositeSolid Intersect<br>[2018, 2048, 0]"]
|
||||
101["CompositeSolid Intersect<br>[2018, 2048, 0]"]
|
||||
102["CompositeSolid Intersect<br>[2018, 2048, 0]"]
|
||||
103["CompositeSolid Intersect<br>[2018, 2048, 0]"]
|
||||
104["CompositeSolid Intersect<br>[2018, 2048, 0]"]
|
||||
105["CompositeSolid Intersect<br>[2018, 2048, 0]"]
|
||||
106["CompositeSolid Intersect<br>[2018, 2048, 0]"]
|
||||
107["CompositeSolid Intersect<br>[2018, 2048, 0]"]
|
||||
108[Wall]
|
||||
109[Wall]
|
||||
110[Wall]
|
||||
|
||||
@ -3072,6 +3072,31 @@ description: Result of parsing dodecahedron.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,173 +1,173 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path17 [Path]
|
||||
17["Path<br>[672, 709, 0]"]
|
||||
30["Segment<br>[715, 747, 0]"]
|
||||
31["Segment<br>[753, 785, 0]"]
|
||||
32["Segment<br>[791, 824, 0]"]
|
||||
33["Segment<br>[830, 886, 0]"]
|
||||
34["Segment<br>[892, 899, 0]"]
|
||||
17["Path<br>[690, 727, 0]"]
|
||||
30["Segment<br>[733, 765, 0]"]
|
||||
31["Segment<br>[771, 803, 0]"]
|
||||
32["Segment<br>[809, 842, 0]"]
|
||||
33["Segment<br>[848, 904, 0]"]
|
||||
34["Segment<br>[910, 917, 0]"]
|
||||
96[Solid2d]
|
||||
end
|
||||
subgraph path18 [Path]
|
||||
18["Path<br>[1292, 1348, 0]"]
|
||||
35["Segment<br>[1354, 1386, 0]"]
|
||||
36["Segment<br>[1392, 1424, 0]"]
|
||||
37["Segment<br>[1430, 1463, 0]"]
|
||||
38["Segment<br>[1469, 1525, 0]"]
|
||||
39["Segment<br>[1531, 1538, 0]"]
|
||||
18["Path<br>[1310, 1366, 0]"]
|
||||
35["Segment<br>[1372, 1404, 0]"]
|
||||
36["Segment<br>[1410, 1442, 0]"]
|
||||
37["Segment<br>[1448, 1481, 0]"]
|
||||
38["Segment<br>[1487, 1543, 0]"]
|
||||
39["Segment<br>[1549, 1556, 0]"]
|
||||
92[Solid2d]
|
||||
end
|
||||
subgraph path19 [Path]
|
||||
19["Path<br>[1803, 1859, 0]"]
|
||||
40["Segment<br>[1865, 1897, 0]"]
|
||||
41["Segment<br>[1903, 1935, 0]"]
|
||||
42["Segment<br>[1941, 1974, 0]"]
|
||||
43["Segment<br>[1980, 2036, 0]"]
|
||||
44["Segment<br>[2042, 2049, 0]"]
|
||||
19["Path<br>[1821, 1877, 0]"]
|
||||
40["Segment<br>[1883, 1915, 0]"]
|
||||
41["Segment<br>[1921, 1953, 0]"]
|
||||
42["Segment<br>[1959, 1992, 0]"]
|
||||
43["Segment<br>[1998, 2054, 0]"]
|
||||
44["Segment<br>[2060, 2067, 0]"]
|
||||
94[Solid2d]
|
||||
end
|
||||
subgraph path20 [Path]
|
||||
20["Path<br>[2445, 2503, 0]"]
|
||||
45["Segment<br>[2509, 2541, 0]"]
|
||||
46["Segment<br>[2547, 2579, 0]"]
|
||||
47["Segment<br>[2585, 2618, 0]"]
|
||||
48["Segment<br>[2624, 2680, 0]"]
|
||||
49["Segment<br>[2686, 2693, 0]"]
|
||||
20["Path<br>[2463, 2521, 0]"]
|
||||
45["Segment<br>[2527, 2559, 0]"]
|
||||
46["Segment<br>[2565, 2597, 0]"]
|
||||
47["Segment<br>[2603, 2636, 0]"]
|
||||
48["Segment<br>[2642, 2698, 0]"]
|
||||
49["Segment<br>[2704, 2711, 0]"]
|
||||
100[Solid2d]
|
||||
end
|
||||
subgraph path21 [Path]
|
||||
21["Path<br>[2995, 3036, 0]"]
|
||||
50["Segment<br>[3042, 3074, 0]"]
|
||||
51["Segment<br>[3080, 3106, 0]"]
|
||||
52["Segment<br>[3112, 3145, 0]"]
|
||||
53["Segment<br>[3151, 3207, 0]"]
|
||||
54["Segment<br>[3213, 3220, 0]"]
|
||||
21["Path<br>[3013, 3054, 0]"]
|
||||
50["Segment<br>[3060, 3092, 0]"]
|
||||
51["Segment<br>[3098, 3124, 0]"]
|
||||
52["Segment<br>[3130, 3163, 0]"]
|
||||
53["Segment<br>[3169, 3225, 0]"]
|
||||
54["Segment<br>[3231, 3238, 0]"]
|
||||
98[Solid2d]
|
||||
end
|
||||
subgraph path22 [Path]
|
||||
22["Path<br>[3403, 3459, 0]"]
|
||||
55["Segment<br>[3465, 3497, 0]"]
|
||||
56["Segment<br>[3503, 3535, 0]"]
|
||||
57["Segment<br>[3541, 3574, 0]"]
|
||||
58["Segment<br>[3580, 3636, 0]"]
|
||||
59["Segment<br>[3642, 3649, 0]"]
|
||||
22["Path<br>[3421, 3477, 0]"]
|
||||
55["Segment<br>[3483, 3515, 0]"]
|
||||
56["Segment<br>[3521, 3553, 0]"]
|
||||
57["Segment<br>[3559, 3592, 0]"]
|
||||
58["Segment<br>[3598, 3654, 0]"]
|
||||
59["Segment<br>[3660, 3667, 0]"]
|
||||
95[Solid2d]
|
||||
end
|
||||
subgraph path23 [Path]
|
||||
23["Path<br>[3877, 3917, 0]"]
|
||||
60["Segment<br>[3923, 3949, 0]"]
|
||||
61["Segment<br>[3955, 3981, 0]"]
|
||||
62["Segment<br>[3987, 4014, 0]"]
|
||||
63["Segment<br>[4020, 4076, 0]"]
|
||||
64["Segment<br>[4082, 4089, 0]"]
|
||||
23["Path<br>[3895, 3935, 0]"]
|
||||
60["Segment<br>[3941, 3967, 0]"]
|
||||
61["Segment<br>[3973, 3999, 0]"]
|
||||
62["Segment<br>[4005, 4032, 0]"]
|
||||
63["Segment<br>[4038, 4094, 0]"]
|
||||
64["Segment<br>[4100, 4107, 0]"]
|
||||
93[Solid2d]
|
||||
end
|
||||
subgraph path24 [Path]
|
||||
24["Path<br>[4376, 4447, 0]"]
|
||||
65["Segment<br>[4453, 4479, 0]"]
|
||||
66["Segment<br>[4485, 4511, 0]"]
|
||||
67["Segment<br>[4517, 4544, 0]"]
|
||||
68["Segment<br>[4550, 4606, 0]"]
|
||||
69["Segment<br>[4612, 4619, 0]"]
|
||||
24["Path<br>[4394, 4465, 0]"]
|
||||
65["Segment<br>[4471, 4497, 0]"]
|
||||
66["Segment<br>[4503, 4529, 0]"]
|
||||
67["Segment<br>[4535, 4562, 0]"]
|
||||
68["Segment<br>[4568, 4624, 0]"]
|
||||
69["Segment<br>[4630, 4637, 0]"]
|
||||
97[Solid2d]
|
||||
end
|
||||
subgraph path25 [Path]
|
||||
25["Path<br>[4813, 4965, 0]"]
|
||||
70["Segment<br>[4971, 5020, 0]"]
|
||||
71["Segment<br>[5026, 5074, 0]"]
|
||||
72["Segment<br>[5080, 5128, 0]"]
|
||||
73["Segment<br>[5134, 5190, 0]"]
|
||||
74["Segment<br>[5196, 5203, 0]"]
|
||||
25["Path<br>[4831, 4983, 0]"]
|
||||
70["Segment<br>[4989, 5038, 0]"]
|
||||
71["Segment<br>[5044, 5092, 0]"]
|
||||
72["Segment<br>[5098, 5146, 0]"]
|
||||
73["Segment<br>[5152, 5208, 0]"]
|
||||
74["Segment<br>[5214, 5221, 0]"]
|
||||
99[Solid2d]
|
||||
end
|
||||
subgraph path26 [Path]
|
||||
26["Path<br>[5735, 5779, 0]"]
|
||||
75["Segment<br>[5785, 5817, 0]"]
|
||||
76["Segment<br>[5823, 5848, 0]"]
|
||||
77["Segment<br>[5854, 5887, 0]"]
|
||||
78["Segment<br>[5893, 5949, 0]"]
|
||||
79["Segment<br>[5955, 5962, 0]"]
|
||||
26["Path<br>[5753, 5797, 0]"]
|
||||
75["Segment<br>[5803, 5835, 0]"]
|
||||
76["Segment<br>[5841, 5866, 0]"]
|
||||
77["Segment<br>[5872, 5905, 0]"]
|
||||
78["Segment<br>[5911, 5967, 0]"]
|
||||
79["Segment<br>[5973, 5980, 0]"]
|
||||
91[Solid2d]
|
||||
end
|
||||
subgraph path27 [Path]
|
||||
27["Path<br>[6249, 6293, 0]"]
|
||||
80["Segment<br>[6299, 6325, 0]"]
|
||||
81["Segment<br>[6331, 6363, 0]"]
|
||||
82["Segment<br>[6369, 6396, 0]"]
|
||||
83["Segment<br>[6402, 6458, 0]"]
|
||||
84["Segment<br>[6464, 6471, 0]"]
|
||||
27["Path<br>[6267, 6311, 0]"]
|
||||
80["Segment<br>[6317, 6343, 0]"]
|
||||
81["Segment<br>[6349, 6381, 0]"]
|
||||
82["Segment<br>[6387, 6414, 0]"]
|
||||
83["Segment<br>[6420, 6476, 0]"]
|
||||
84["Segment<br>[6482, 6489, 0]"]
|
||||
101[Solid2d]
|
||||
end
|
||||
subgraph path28 [Path]
|
||||
28["Path<br>[6948, 7001, 0]"]
|
||||
85["Segment<br>[7007, 7044, 0]"]
|
||||
86["Segment<br>[7050, 7143, 0]"]
|
||||
87["Segment<br>[7149, 7185, 0]"]
|
||||
88["Segment<br>[7191, 7292, 0]"]
|
||||
89["Segment<br>[7298, 7334, 0]"]
|
||||
28["Path<br>[6966, 7019, 0]"]
|
||||
85["Segment<br>[7025, 7062, 0]"]
|
||||
86["Segment<br>[7068, 7161, 0]"]
|
||||
87["Segment<br>[7167, 7203, 0]"]
|
||||
88["Segment<br>[7209, 7310, 0]"]
|
||||
89["Segment<br>[7316, 7352, 0]"]
|
||||
end
|
||||
subgraph path29 [Path]
|
||||
29["Path<br>[7397, 7508, 0]"]
|
||||
90["Segment<br>[7397, 7508, 0]"]
|
||||
29["Path<br>[7415, 7526, 0]"]
|
||||
90["Segment<br>[7415, 7526, 0]"]
|
||||
102[Solid2d]
|
||||
end
|
||||
1["Plane<br>[565, 582, 0]"]
|
||||
2["Plane<br>[1219, 1273, 0]"]
|
||||
3["Plane<br>[2299, 2350, 0]"]
|
||||
4["Plane<br>[2938, 2975, 0]"]
|
||||
5["Plane<br>[3823, 3860, 0]"]
|
||||
6["Plane<br>[5673, 5722, 0]"]
|
||||
7["Plane<br>[6874, 6925, 0]"]
|
||||
8["Plane<br>[7356, 7373, 0]"]
|
||||
9["StartSketchOnPlane<br>[2285, 2351, 0]"]
|
||||
10["StartSketchOnPlane<br>[5659, 5723, 0]"]
|
||||
11["StartSketchOnPlane<br>[6860, 6926, 0]"]
|
||||
12["StartSketchOnPlane<br>[3809, 3861, 0]"]
|
||||
13["StartSketchOnPlane<br>[2924, 2976, 0]"]
|
||||
14["StartSketchOnPlane<br>[1205, 1274, 0]"]
|
||||
15["StartSketchOnFace<br>[4756, 4795, 0]"]
|
||||
16["StartSketchOnFace<br>[4316, 4357, 0]"]
|
||||
103["Sweep Extrusion<br>[1060, 1087, 0]"]
|
||||
104["Sweep Extrusion<br>[1060, 1087, 0]"]
|
||||
105["Sweep Extrusion<br>[1060, 1087, 0]"]
|
||||
106["Sweep Extrusion<br>[1060, 1087, 0]"]
|
||||
107["Sweep Extrusion<br>[1060, 1087, 0]"]
|
||||
108["Sweep Extrusion<br>[1060, 1087, 0]"]
|
||||
109["Sweep Extrusion<br>[1060, 1087, 0]"]
|
||||
110["Sweep Extrusion<br>[1060, 1087, 0]"]
|
||||
111["Sweep Extrusion<br>[1701, 1735, 0]"]
|
||||
112["Sweep Extrusion<br>[1701, 1735, 0]"]
|
||||
113["Sweep Extrusion<br>[1701, 1735, 0]"]
|
||||
114["Sweep Extrusion<br>[1701, 1735, 0]"]
|
||||
115["Sweep Extrusion<br>[1701, 1735, 0]"]
|
||||
116["Sweep Extrusion<br>[1701, 1735, 0]"]
|
||||
117["Sweep Extrusion<br>[2148, 2182, 0]"]
|
||||
118["Sweep Extrusion<br>[2148, 2182, 0]"]
|
||||
119["Sweep Extrusion<br>[2856, 2891, 0]"]
|
||||
120["Sweep Extrusion<br>[2856, 2891, 0]"]
|
||||
121["Sweep Extrusion<br>[2856, 2891, 0]"]
|
||||
122["Sweep Extrusion<br>[2856, 2891, 0]"]
|
||||
123["Sweep Extrusion<br>[2856, 2891, 0]"]
|
||||
124["Sweep Extrusion<br>[2856, 2891, 0]"]
|
||||
125["Sweep Extrusion<br>[3300, 3335, 0]"]
|
||||
126["Sweep Extrusion<br>[3300, 3335, 0]"]
|
||||
127["Sweep Extrusion<br>[3748, 3783, 0]"]
|
||||
128["Sweep Extrusion<br>[3748, 3783, 0]"]
|
||||
129["Sweep Extrusion<br>[4095, 4128, 0]"]
|
||||
130["Sweep Extrusion<br>[4709, 4736, 0]"]
|
||||
131["Sweep Extrusion<br>[4709, 4736, 0]"]
|
||||
132["Sweep Extrusion<br>[5292, 5320, 0]"]
|
||||
133["Sweep Extrusion<br>[5292, 5320, 0]"]
|
||||
134["Sweep Extrusion<br>[6061, 6089, 0]"]
|
||||
135["Sweep Extrusion<br>[6061, 6089, 0]"]
|
||||
136["Sweep Extrusion<br>[6061, 6089, 0]"]
|
||||
137["Sweep Extrusion<br>[6061, 6089, 0]"]
|
||||
138["Sweep Extrusion<br>[6061, 6089, 0]"]
|
||||
139["Sweep Extrusion<br>[6061, 6089, 0]"]
|
||||
140["Sweep Extrusion<br>[6553, 6581, 0]"]
|
||||
141["Sweep Extrusion<br>[6553, 6581, 0]"]
|
||||
142["Sweep Sweep<br>[7522, 7575, 0]"]
|
||||
1["Plane<br>[583, 600, 0]"]
|
||||
2["Plane<br>[1237, 1291, 0]"]
|
||||
3["Plane<br>[2317, 2368, 0]"]
|
||||
4["Plane<br>[2956, 2993, 0]"]
|
||||
5["Plane<br>[3841, 3878, 0]"]
|
||||
6["Plane<br>[5691, 5740, 0]"]
|
||||
7["Plane<br>[6892, 6943, 0]"]
|
||||
8["Plane<br>[7374, 7391, 0]"]
|
||||
9["StartSketchOnPlane<br>[2303, 2369, 0]"]
|
||||
10["StartSketchOnPlane<br>[5677, 5741, 0]"]
|
||||
11["StartSketchOnPlane<br>[6878, 6944, 0]"]
|
||||
12["StartSketchOnPlane<br>[3827, 3879, 0]"]
|
||||
13["StartSketchOnPlane<br>[2942, 2994, 0]"]
|
||||
14["StartSketchOnPlane<br>[1223, 1292, 0]"]
|
||||
15["StartSketchOnFace<br>[4774, 4813, 0]"]
|
||||
16["StartSketchOnFace<br>[4334, 4375, 0]"]
|
||||
103["Sweep Extrusion<br>[1078, 1105, 0]"]
|
||||
104["Sweep Extrusion<br>[1078, 1105, 0]"]
|
||||
105["Sweep Extrusion<br>[1078, 1105, 0]"]
|
||||
106["Sweep Extrusion<br>[1078, 1105, 0]"]
|
||||
107["Sweep Extrusion<br>[1078, 1105, 0]"]
|
||||
108["Sweep Extrusion<br>[1078, 1105, 0]"]
|
||||
109["Sweep Extrusion<br>[1078, 1105, 0]"]
|
||||
110["Sweep Extrusion<br>[1078, 1105, 0]"]
|
||||
111["Sweep Extrusion<br>[1719, 1753, 0]"]
|
||||
112["Sweep Extrusion<br>[1719, 1753, 0]"]
|
||||
113["Sweep Extrusion<br>[1719, 1753, 0]"]
|
||||
114["Sweep Extrusion<br>[1719, 1753, 0]"]
|
||||
115["Sweep Extrusion<br>[1719, 1753, 0]"]
|
||||
116["Sweep Extrusion<br>[1719, 1753, 0]"]
|
||||
117["Sweep Extrusion<br>[2166, 2200, 0]"]
|
||||
118["Sweep Extrusion<br>[2166, 2200, 0]"]
|
||||
119["Sweep Extrusion<br>[2874, 2909, 0]"]
|
||||
120["Sweep Extrusion<br>[2874, 2909, 0]"]
|
||||
121["Sweep Extrusion<br>[2874, 2909, 0]"]
|
||||
122["Sweep Extrusion<br>[2874, 2909, 0]"]
|
||||
123["Sweep Extrusion<br>[2874, 2909, 0]"]
|
||||
124["Sweep Extrusion<br>[2874, 2909, 0]"]
|
||||
125["Sweep Extrusion<br>[3318, 3353, 0]"]
|
||||
126["Sweep Extrusion<br>[3318, 3353, 0]"]
|
||||
127["Sweep Extrusion<br>[3766, 3801, 0]"]
|
||||
128["Sweep Extrusion<br>[3766, 3801, 0]"]
|
||||
129["Sweep Extrusion<br>[4113, 4146, 0]"]
|
||||
130["Sweep Extrusion<br>[4727, 4754, 0]"]
|
||||
131["Sweep Extrusion<br>[4727, 4754, 0]"]
|
||||
132["Sweep Extrusion<br>[5310, 5338, 0]"]
|
||||
133["Sweep Extrusion<br>[5310, 5338, 0]"]
|
||||
134["Sweep Extrusion<br>[6079, 6107, 0]"]
|
||||
135["Sweep Extrusion<br>[6079, 6107, 0]"]
|
||||
136["Sweep Extrusion<br>[6079, 6107, 0]"]
|
||||
137["Sweep Extrusion<br>[6079, 6107, 0]"]
|
||||
138["Sweep Extrusion<br>[6079, 6107, 0]"]
|
||||
139["Sweep Extrusion<br>[6079, 6107, 0]"]
|
||||
140["Sweep Extrusion<br>[6571, 6599, 0]"]
|
||||
141["Sweep Extrusion<br>[6571, 6599, 0]"]
|
||||
142["Sweep Sweep<br>[7540, 7593, 0]"]
|
||||
143[Wall]
|
||||
144[Wall]
|
||||
145[Wall]
|
||||
|
||||
@ -11172,6 +11172,31 @@ description: Result of parsing dual-basin-utility-sink.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,126 +1,126 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[287, 312, 0]"]
|
||||
27["Segment<br>[318, 384, 0]"]
|
||||
28["Segment<br>[390, 489, 0]"]
|
||||
29["Segment<br>[495, 612, 0]"]
|
||||
30["Segment<br>[618, 703, 0]"]
|
||||
31["Segment<br>[709, 716, 0]"]
|
||||
8["Path<br>[305, 330, 0]"]
|
||||
27["Segment<br>[336, 402, 0]"]
|
||||
28["Segment<br>[408, 507, 0]"]
|
||||
29["Segment<br>[513, 630, 0]"]
|
||||
30["Segment<br>[636, 721, 0]"]
|
||||
31["Segment<br>[727, 734, 0]"]
|
||||
67[Solid2d]
|
||||
end
|
||||
subgraph path9 [Path]
|
||||
9["Path<br>[1598, 1681, 0]"]
|
||||
33["Segment<br>[1598, 1681, 0]"]
|
||||
9["Path<br>[1616, 1699, 0]"]
|
||||
33["Segment<br>[1616, 1699, 0]"]
|
||||
59[Solid2d]
|
||||
end
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[1598, 1681, 0]"]
|
||||
32["Segment<br>[1598, 1681, 0]"]
|
||||
10["Path<br>[1616, 1699, 0]"]
|
||||
32["Segment<br>[1616, 1699, 0]"]
|
||||
60[Solid2d]
|
||||
end
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[1598, 1681, 0]"]
|
||||
34["Segment<br>[1598, 1681, 0]"]
|
||||
11["Path<br>[1616, 1699, 0]"]
|
||||
34["Segment<br>[1616, 1699, 0]"]
|
||||
66[Solid2d]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[1598, 1681, 0]"]
|
||||
35["Segment<br>[1598, 1681, 0]"]
|
||||
12["Path<br>[1616, 1699, 0]"]
|
||||
35["Segment<br>[1616, 1699, 0]"]
|
||||
75[Solid2d]
|
||||
end
|
||||
subgraph path13 [Path]
|
||||
13["Path<br>[1707, 1774, 0]"]
|
||||
37["Segment<br>[1707, 1774, 0]"]
|
||||
13["Path<br>[1725, 1792, 0]"]
|
||||
37["Segment<br>[1725, 1792, 0]"]
|
||||
62[Solid2d]
|
||||
end
|
||||
subgraph path14 [Path]
|
||||
14["Path<br>[1707, 1774, 0]"]
|
||||
36["Segment<br>[1707, 1774, 0]"]
|
||||
14["Path<br>[1725, 1792, 0]"]
|
||||
36["Segment<br>[1725, 1792, 0]"]
|
||||
70[Solid2d]
|
||||
end
|
||||
subgraph path15 [Path]
|
||||
15["Path<br>[1707, 1774, 0]"]
|
||||
39["Segment<br>[1707, 1774, 0]"]
|
||||
15["Path<br>[1725, 1792, 0]"]
|
||||
39["Segment<br>[1725, 1792, 0]"]
|
||||
72[Solid2d]
|
||||
end
|
||||
subgraph path16 [Path]
|
||||
16["Path<br>[1707, 1774, 0]"]
|
||||
38["Segment<br>[1707, 1774, 0]"]
|
||||
16["Path<br>[1725, 1792, 0]"]
|
||||
38["Segment<br>[1725, 1792, 0]"]
|
||||
73[Solid2d]
|
||||
end
|
||||
subgraph path17 [Path]
|
||||
17["Path<br>[2342, 2377, 0]"]
|
||||
40["Segment<br>[2383, 2449, 0]"]
|
||||
41["Segment<br>[2455, 2554, 0]"]
|
||||
42["Segment<br>[2560, 2677, 0]"]
|
||||
43["Segment<br>[2683, 2768, 0]"]
|
||||
44["Segment<br>[2774, 2781, 0]"]
|
||||
17["Path<br>[2360, 2395, 0]"]
|
||||
40["Segment<br>[2401, 2467, 0]"]
|
||||
41["Segment<br>[2473, 2572, 0]"]
|
||||
42["Segment<br>[2578, 2695, 0]"]
|
||||
43["Segment<br>[2701, 2786, 0]"]
|
||||
44["Segment<br>[2792, 2799, 0]"]
|
||||
63[Solid2d]
|
||||
end
|
||||
subgraph path18 [Path]
|
||||
18["Path<br>[2805, 2961, 0]"]
|
||||
45["Segment<br>[2805, 2961, 0]"]
|
||||
18["Path<br>[2823, 2979, 0]"]
|
||||
45["Segment<br>[2823, 2979, 0]"]
|
||||
74[Solid2d]
|
||||
end
|
||||
subgraph path19 [Path]
|
||||
19["Path<br>[2986, 3153, 0]"]
|
||||
46["Segment<br>[2986, 3153, 0]"]
|
||||
19["Path<br>[3004, 3171, 0]"]
|
||||
46["Segment<br>[3004, 3171, 0]"]
|
||||
76[Solid2d]
|
||||
end
|
||||
subgraph path20 [Path]
|
||||
20["Path<br>[3178, 3336, 0]"]
|
||||
47["Segment<br>[3178, 3336, 0]"]
|
||||
20["Path<br>[3196, 3354, 0]"]
|
||||
47["Segment<br>[3196, 3354, 0]"]
|
||||
64[Solid2d]
|
||||
end
|
||||
subgraph path21 [Path]
|
||||
21["Path<br>[3361, 3530, 0]"]
|
||||
48["Segment<br>[3361, 3530, 0]"]
|
||||
21["Path<br>[3379, 3548, 0]"]
|
||||
48["Segment<br>[3379, 3548, 0]"]
|
||||
61[Solid2d]
|
||||
end
|
||||
subgraph path22 [Path]
|
||||
22["Path<br>[3973, 4057, 0]"]
|
||||
49["Segment<br>[4063, 4151, 0]"]
|
||||
50["Segment<br>[4157, 4278, 0]"]
|
||||
51["Segment<br>[4284, 4401, 0]"]
|
||||
52["Segment<br>[4407, 4492, 0]"]
|
||||
53["Segment<br>[4498, 4505, 0]"]
|
||||
22["Path<br>[3991, 4075, 0]"]
|
||||
49["Segment<br>[4081, 4169, 0]"]
|
||||
50["Segment<br>[4175, 4296, 0]"]
|
||||
51["Segment<br>[4302, 4419, 0]"]
|
||||
52["Segment<br>[4425, 4510, 0]"]
|
||||
53["Segment<br>[4516, 4523, 0]"]
|
||||
65[Solid2d]
|
||||
end
|
||||
subgraph path23 [Path]
|
||||
23["Path<br>[4529, 4701, 0]"]
|
||||
54["Segment<br>[4529, 4701, 0]"]
|
||||
23["Path<br>[4547, 4719, 0]"]
|
||||
54["Segment<br>[4547, 4719, 0]"]
|
||||
58[Solid2d]
|
||||
end
|
||||
subgraph path24 [Path]
|
||||
24["Path<br>[4726, 4909, 0]"]
|
||||
55["Segment<br>[4726, 4909, 0]"]
|
||||
24["Path<br>[4744, 4927, 0]"]
|
||||
55["Segment<br>[4744, 4927, 0]"]
|
||||
71[Solid2d]
|
||||
end
|
||||
subgraph path25 [Path]
|
||||
25["Path<br>[4934, 5108, 0]"]
|
||||
56["Segment<br>[4934, 5108, 0]"]
|
||||
25["Path<br>[4952, 5126, 0]"]
|
||||
56["Segment<br>[4952, 5126, 0]"]
|
||||
68[Solid2d]
|
||||
end
|
||||
subgraph path26 [Path]
|
||||
26["Path<br>[5133, 5318, 0]"]
|
||||
57["Segment<br>[5133, 5318, 0]"]
|
||||
26["Path<br>[5151, 5336, 0]"]
|
||||
57["Segment<br>[5151, 5336, 0]"]
|
||||
69[Solid2d]
|
||||
end
|
||||
1["Plane<br>[264, 281, 0]"]
|
||||
2["Plane<br>[1567, 1590, 0]"]
|
||||
3["Plane<br>[1567, 1590, 0]"]
|
||||
4["Plane<br>[1567, 1590, 0]"]
|
||||
5["Plane<br>[1567, 1590, 0]"]
|
||||
6["Plane<br>[2319, 2336, 0]"]
|
||||
7["StartSketchOnFace<br>[3930, 3967, 0]"]
|
||||
77["Sweep Extrusion<br>[730, 765, 0]"]
|
||||
78["Sweep Extrusion<br>[1791, 1842, 0]"]
|
||||
79["Sweep Extrusion<br>[1791, 1842, 0]"]
|
||||
80["Sweep Extrusion<br>[1791, 1842, 0]"]
|
||||
81["Sweep Extrusion<br>[1791, 1842, 0]"]
|
||||
82["Sweep Extrusion<br>[3545, 3587, 0]"]
|
||||
83["Sweep Extrusion<br>[5333, 5375, 0]"]
|
||||
1["Plane<br>[282, 299, 0]"]
|
||||
2["Plane<br>[1585, 1608, 0]"]
|
||||
3["Plane<br>[1585, 1608, 0]"]
|
||||
4["Plane<br>[1585, 1608, 0]"]
|
||||
5["Plane<br>[1585, 1608, 0]"]
|
||||
6["Plane<br>[2337, 2354, 0]"]
|
||||
7["StartSketchOnFace<br>[3948, 3985, 0]"]
|
||||
77["Sweep Extrusion<br>[748, 783, 0]"]
|
||||
78["Sweep Extrusion<br>[1809, 1860, 0]"]
|
||||
79["Sweep Extrusion<br>[1809, 1860, 0]"]
|
||||
80["Sweep Extrusion<br>[1809, 1860, 0]"]
|
||||
81["Sweep Extrusion<br>[1809, 1860, 0]"]
|
||||
82["Sweep Extrusion<br>[3563, 3605, 0]"]
|
||||
83["Sweep Extrusion<br>[5351, 5393, 0]"]
|
||||
84[Wall]
|
||||
85[Wall]
|
||||
86[Wall]
|
||||
@ -183,18 +183,18 @@ flowchart LR
|
||||
143["SweepEdge Adjacent"]
|
||||
144["SweepEdge Adjacent"]
|
||||
145["SweepEdge Adjacent"]
|
||||
146["EdgeCut Fillet<br>[771, 1053, 0]"]
|
||||
147["EdgeCut Fillet<br>[771, 1053, 0]"]
|
||||
148["EdgeCut Fillet<br>[771, 1053, 0]"]
|
||||
149["EdgeCut Fillet<br>[771, 1053, 0]"]
|
||||
150["EdgeCut Fillet<br>[3593, 3875, 0]"]
|
||||
151["EdgeCut Fillet<br>[3593, 3875, 0]"]
|
||||
152["EdgeCut Fillet<br>[3593, 3875, 0]"]
|
||||
153["EdgeCut Fillet<br>[3593, 3875, 0]"]
|
||||
154["EdgeCut Fillet<br>[5381, 5663, 0]"]
|
||||
155["EdgeCut Fillet<br>[5381, 5663, 0]"]
|
||||
156["EdgeCut Fillet<br>[5381, 5663, 0]"]
|
||||
157["EdgeCut Fillet<br>[5381, 5663, 0]"]
|
||||
146["EdgeCut Fillet<br>[789, 1071, 0]"]
|
||||
147["EdgeCut Fillet<br>[789, 1071, 0]"]
|
||||
148["EdgeCut Fillet<br>[789, 1071, 0]"]
|
||||
149["EdgeCut Fillet<br>[789, 1071, 0]"]
|
||||
150["EdgeCut Fillet<br>[3611, 3893, 0]"]
|
||||
151["EdgeCut Fillet<br>[3611, 3893, 0]"]
|
||||
152["EdgeCut Fillet<br>[3611, 3893, 0]"]
|
||||
153["EdgeCut Fillet<br>[3611, 3893, 0]"]
|
||||
154["EdgeCut Fillet<br>[5399, 5681, 0]"]
|
||||
155["EdgeCut Fillet<br>[5399, 5681, 0]"]
|
||||
156["EdgeCut Fillet<br>[5399, 5681, 0]"]
|
||||
157["EdgeCut Fillet<br>[5399, 5681, 0]"]
|
||||
1 --- 8
|
||||
2 --- 9
|
||||
2 --- 14
|
||||
|
||||
@ -7464,6 +7464,31 @@ description: Result of parsing enclosure.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -15,9 +15,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 362,
|
||||
"end": 383,
|
||||
"start": 362,
|
||||
"commentStart": 380,
|
||||
"end": 401,
|
||||
"start": 380,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA001"
|
||||
},
|
||||
@ -28,9 +28,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 467,
|
||||
"end": 488,
|
||||
"start": 467,
|
||||
"commentStart": 485,
|
||||
"end": 506,
|
||||
"start": 485,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB001"
|
||||
},
|
||||
@ -41,9 +41,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 590,
|
||||
"end": 611,
|
||||
"start": 590,
|
||||
"commentStart": 608,
|
||||
"end": 629,
|
||||
"start": 608,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC001"
|
||||
},
|
||||
@ -54,9 +54,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 681,
|
||||
"end": 702,
|
||||
"start": 681,
|
||||
"commentStart": 699,
|
||||
"end": 720,
|
||||
"start": 699,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD001"
|
||||
},
|
||||
@ -77,9 +77,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 362,
|
||||
"end": 383,
|
||||
"start": 362,
|
||||
"commentStart": 380,
|
||||
"end": 401,
|
||||
"start": 380,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA001"
|
||||
},
|
||||
@ -102,9 +102,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 467,
|
||||
"end": 488,
|
||||
"start": 467,
|
||||
"commentStart": 485,
|
||||
"end": 506,
|
||||
"start": 485,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB001"
|
||||
},
|
||||
@ -127,9 +127,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
175.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 590,
|
||||
"end": 611,
|
||||
"start": 590,
|
||||
"commentStart": 608,
|
||||
"end": 629,
|
||||
"start": 608,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC001"
|
||||
},
|
||||
@ -152,9 +152,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
175.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 681,
|
||||
"end": 702,
|
||||
"start": 681,
|
||||
"commentStart": 699,
|
||||
"end": 720,
|
||||
"start": 699,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD001"
|
||||
},
|
||||
@ -354,9 +354,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2427,
|
||||
"end": 2448,
|
||||
"start": 2427,
|
||||
"commentStart": 2445,
|
||||
"end": 2466,
|
||||
"start": 2445,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA002"
|
||||
},
|
||||
@ -367,9 +367,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2532,
|
||||
"end": 2553,
|
||||
"start": 2532,
|
||||
"commentStart": 2550,
|
||||
"end": 2571,
|
||||
"start": 2550,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB002"
|
||||
},
|
||||
@ -380,9 +380,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2655,
|
||||
"end": 2676,
|
||||
"start": 2655,
|
||||
"commentStart": 2673,
|
||||
"end": 2694,
|
||||
"start": 2673,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC002"
|
||||
},
|
||||
@ -393,9 +393,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2746,
|
||||
"end": 2767,
|
||||
"start": 2746,
|
||||
"commentStart": 2764,
|
||||
"end": 2785,
|
||||
"start": 2764,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD002"
|
||||
},
|
||||
@ -416,9 +416,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2427,
|
||||
"end": 2448,
|
||||
"start": 2427,
|
||||
"commentStart": 2445,
|
||||
"end": 2466,
|
||||
"start": 2445,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA002"
|
||||
},
|
||||
@ -441,9 +441,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2532,
|
||||
"end": 2553,
|
||||
"start": 2532,
|
||||
"commentStart": 2550,
|
||||
"end": 2571,
|
||||
"start": 2550,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB002"
|
||||
},
|
||||
@ -466,9 +466,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
175.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2655,
|
||||
"end": 2676,
|
||||
"start": 2655,
|
||||
"commentStart": 2673,
|
||||
"end": 2694,
|
||||
"start": 2673,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC002"
|
||||
},
|
||||
@ -491,9 +491,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
175.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2746,
|
||||
"end": 2767,
|
||||
"start": 2746,
|
||||
"commentStart": 2764,
|
||||
"end": 2785,
|
||||
"start": 2764,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD002"
|
||||
},
|
||||
@ -693,9 +693,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4129,
|
||||
"end": 4150,
|
||||
"start": 4129,
|
||||
"commentStart": 4147,
|
||||
"end": 4168,
|
||||
"start": 4147,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA003"
|
||||
},
|
||||
@ -706,9 +706,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4256,
|
||||
"end": 4277,
|
||||
"start": 4256,
|
||||
"commentStart": 4274,
|
||||
"end": 4295,
|
||||
"start": 4274,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB003"
|
||||
},
|
||||
@ -719,9 +719,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4379,
|
||||
"end": 4400,
|
||||
"start": 4379,
|
||||
"commentStart": 4397,
|
||||
"end": 4418,
|
||||
"start": 4397,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC003"
|
||||
},
|
||||
@ -732,9 +732,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4470,
|
||||
"end": 4491,
|
||||
"start": 4470,
|
||||
"commentStart": 4488,
|
||||
"end": 4509,
|
||||
"start": 4488,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD003"
|
||||
},
|
||||
@ -755,9 +755,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
3.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4129,
|
||||
"end": 4150,
|
||||
"start": 4129,
|
||||
"commentStart": 4147,
|
||||
"end": 4168,
|
||||
"start": 4147,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA003"
|
||||
},
|
||||
@ -780,9 +780,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
3.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4256,
|
||||
"end": 4277,
|
||||
"start": 4256,
|
||||
"commentStart": 4274,
|
||||
"end": 4295,
|
||||
"start": 4274,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB003"
|
||||
},
|
||||
@ -805,9 +805,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
172.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4379,
|
||||
"end": 4400,
|
||||
"start": 4379,
|
||||
"commentStart": 4397,
|
||||
"end": 4418,
|
||||
"start": 4397,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC003"
|
||||
},
|
||||
@ -830,9 +830,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
172.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4470,
|
||||
"end": 4491,
|
||||
"start": 4470,
|
||||
"commentStart": 4488,
|
||||
"end": 4509,
|
||||
"start": 4488,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD003"
|
||||
},
|
||||
@ -896,9 +896,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2427,
|
||||
"end": 2448,
|
||||
"start": 2427,
|
||||
"commentStart": 2445,
|
||||
"end": 2466,
|
||||
"start": 2445,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA002"
|
||||
},
|
||||
@ -909,9 +909,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2532,
|
||||
"end": 2553,
|
||||
"start": 2532,
|
||||
"commentStart": 2550,
|
||||
"end": 2571,
|
||||
"start": 2550,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB002"
|
||||
},
|
||||
@ -922,9 +922,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2655,
|
||||
"end": 2676,
|
||||
"start": 2655,
|
||||
"commentStart": 2673,
|
||||
"end": 2694,
|
||||
"start": 2673,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC002"
|
||||
},
|
||||
@ -935,9 +935,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2746,
|
||||
"end": 2767,
|
||||
"start": 2746,
|
||||
"commentStart": 2764,
|
||||
"end": 2785,
|
||||
"start": 2764,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD002"
|
||||
},
|
||||
@ -958,9 +958,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2427,
|
||||
"end": 2448,
|
||||
"start": 2427,
|
||||
"commentStart": 2445,
|
||||
"end": 2466,
|
||||
"start": 2445,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA002"
|
||||
},
|
||||
@ -983,9 +983,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2532,
|
||||
"end": 2553,
|
||||
"start": 2532,
|
||||
"commentStart": 2550,
|
||||
"end": 2571,
|
||||
"start": 2550,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB002"
|
||||
},
|
||||
@ -1008,9 +1008,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
175.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2655,
|
||||
"end": 2676,
|
||||
"start": 2655,
|
||||
"commentStart": 2673,
|
||||
"end": 2694,
|
||||
"start": 2673,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC002"
|
||||
},
|
||||
@ -1033,9 +1033,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
175.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2746,
|
||||
"end": 2767,
|
||||
"start": 2746,
|
||||
"commentStart": 2764,
|
||||
"end": 2785,
|
||||
"start": 2764,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD002"
|
||||
},
|
||||
@ -1469,9 +1469,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 362,
|
||||
"end": 383,
|
||||
"start": 362,
|
||||
"commentStart": 380,
|
||||
"end": 401,
|
||||
"start": 380,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA001"
|
||||
},
|
||||
@ -1494,9 +1494,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 467,
|
||||
"end": 488,
|
||||
"start": 467,
|
||||
"commentStart": 485,
|
||||
"end": 506,
|
||||
"start": 485,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB001"
|
||||
},
|
||||
@ -1519,9 +1519,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
175.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 590,
|
||||
"end": 611,
|
||||
"start": 590,
|
||||
"commentStart": 608,
|
||||
"end": 629,
|
||||
"start": 608,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC001"
|
||||
},
|
||||
@ -1544,9 +1544,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
175.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 681,
|
||||
"end": 702,
|
||||
"start": 681,
|
||||
"commentStart": 699,
|
||||
"end": 720,
|
||||
"start": 699,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD001"
|
||||
},
|
||||
@ -1668,9 +1668,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2427,
|
||||
"end": 2448,
|
||||
"start": 2427,
|
||||
"commentStart": 2445,
|
||||
"end": 2466,
|
||||
"start": 2445,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA002"
|
||||
},
|
||||
@ -1693,9 +1693,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2532,
|
||||
"end": 2553,
|
||||
"start": 2532,
|
||||
"commentStart": 2550,
|
||||
"end": 2571,
|
||||
"start": 2550,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB002"
|
||||
},
|
||||
@ -1718,9 +1718,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
175.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2655,
|
||||
"end": 2676,
|
||||
"start": 2655,
|
||||
"commentStart": 2673,
|
||||
"end": 2694,
|
||||
"start": 2673,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC002"
|
||||
},
|
||||
@ -1743,9 +1743,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
175.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2746,
|
||||
"end": 2767,
|
||||
"start": 2746,
|
||||
"commentStart": 2764,
|
||||
"end": 2785,
|
||||
"start": 2764,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD002"
|
||||
},
|
||||
@ -1867,9 +1867,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
3.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4129,
|
||||
"end": 4150,
|
||||
"start": 4129,
|
||||
"commentStart": 4147,
|
||||
"end": 4168,
|
||||
"start": 4147,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA003"
|
||||
},
|
||||
@ -1892,9 +1892,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
3.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4256,
|
||||
"end": 4277,
|
||||
"start": 4256,
|
||||
"commentStart": 4274,
|
||||
"end": 4295,
|
||||
"start": 4274,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB003"
|
||||
},
|
||||
@ -1917,9 +1917,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
172.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4379,
|
||||
"end": 4400,
|
||||
"start": 4379,
|
||||
"commentStart": 4397,
|
||||
"end": 4418,
|
||||
"start": 4397,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC003"
|
||||
},
|
||||
@ -1942,9 +1942,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
172.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4470,
|
||||
"end": 4491,
|
||||
"start": 4470,
|
||||
"commentStart": 4488,
|
||||
"end": 4509,
|
||||
"start": 4488,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD003"
|
||||
},
|
||||
@ -2008,9 +2008,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2427,
|
||||
"end": 2448,
|
||||
"start": 2427,
|
||||
"commentStart": 2445,
|
||||
"end": 2466,
|
||||
"start": 2445,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA002"
|
||||
},
|
||||
@ -2021,9 +2021,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2532,
|
||||
"end": 2553,
|
||||
"start": 2532,
|
||||
"commentStart": 2550,
|
||||
"end": 2571,
|
||||
"start": 2550,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB002"
|
||||
},
|
||||
@ -2034,9 +2034,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2655,
|
||||
"end": 2676,
|
||||
"start": 2655,
|
||||
"commentStart": 2673,
|
||||
"end": 2694,
|
||||
"start": 2673,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC002"
|
||||
},
|
||||
@ -2047,9 +2047,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2746,
|
||||
"end": 2767,
|
||||
"start": 2746,
|
||||
"commentStart": 2764,
|
||||
"end": 2785,
|
||||
"start": 2764,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD002"
|
||||
},
|
||||
@ -2070,9 +2070,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2427,
|
||||
"end": 2448,
|
||||
"start": 2427,
|
||||
"commentStart": 2445,
|
||||
"end": 2466,
|
||||
"start": 2445,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA002"
|
||||
},
|
||||
@ -2095,9 +2095,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2532,
|
||||
"end": 2553,
|
||||
"start": 2532,
|
||||
"commentStart": 2550,
|
||||
"end": 2571,
|
||||
"start": 2550,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB002"
|
||||
},
|
||||
@ -2120,9 +2120,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
175.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2655,
|
||||
"end": 2676,
|
||||
"start": 2655,
|
||||
"commentStart": 2673,
|
||||
"end": 2694,
|
||||
"start": 2673,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC002"
|
||||
},
|
||||
@ -2145,9 +2145,9 @@ description: Variables in memory after executing enclosure.kcl
|
||||
175.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2746,
|
||||
"end": 2767,
|
||||
"start": 2746,
|
||||
"commentStart": 2764,
|
||||
"end": 2785,
|
||||
"start": 2764,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentD002"
|
||||
},
|
||||
|
||||
@ -1,152 +1,152 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[735, 770, 0]"]
|
||||
33["Segment<br>[778, 804, 0]"]
|
||||
37["Segment<br>[812, 873, 0]"]
|
||||
42["Segment<br>[881, 940, 0]"]
|
||||
43["Segment<br>[948, 1008, 0]"]
|
||||
47["Segment<br>[1016, 1075, 0]"]
|
||||
10["Path<br>[753, 788, 0]"]
|
||||
33["Segment<br>[796, 822, 0]"]
|
||||
37["Segment<br>[830, 891, 0]"]
|
||||
42["Segment<br>[899, 958, 0]"]
|
||||
43["Segment<br>[966, 1026, 0]"]
|
||||
47["Segment<br>[1034, 1093, 0]"]
|
||||
end
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[735, 770, 0]"]
|
||||
34["Segment<br>[778, 804, 0]"]
|
||||
35["Segment<br>[812, 873, 0]"]
|
||||
41["Segment<br>[881, 940, 0]"]
|
||||
45["Segment<br>[948, 1008, 0]"]
|
||||
48["Segment<br>[1016, 1075, 0]"]
|
||||
11["Path<br>[753, 788, 0]"]
|
||||
34["Segment<br>[796, 822, 0]"]
|
||||
35["Segment<br>[830, 891, 0]"]
|
||||
41["Segment<br>[899, 958, 0]"]
|
||||
45["Segment<br>[966, 1026, 0]"]
|
||||
48["Segment<br>[1034, 1093, 0]"]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[735, 770, 0]"]
|
||||
32["Segment<br>[778, 804, 0]"]
|
||||
36["Segment<br>[812, 873, 0]"]
|
||||
40["Segment<br>[881, 940, 0]"]
|
||||
46["Segment<br>[948, 1008, 0]"]
|
||||
50["Segment<br>[1016, 1075, 0]"]
|
||||
12["Path<br>[753, 788, 0]"]
|
||||
32["Segment<br>[796, 822, 0]"]
|
||||
36["Segment<br>[830, 891, 0]"]
|
||||
40["Segment<br>[899, 958, 0]"]
|
||||
46["Segment<br>[966, 1026, 0]"]
|
||||
50["Segment<br>[1034, 1093, 0]"]
|
||||
end
|
||||
subgraph path13 [Path]
|
||||
13["Path<br>[735, 770, 0]"]
|
||||
31["Segment<br>[778, 804, 0]"]
|
||||
38["Segment<br>[812, 873, 0]"]
|
||||
39["Segment<br>[881, 940, 0]"]
|
||||
44["Segment<br>[948, 1008, 0]"]
|
||||
49["Segment<br>[1016, 1075, 0]"]
|
||||
13["Path<br>[753, 788, 0]"]
|
||||
31["Segment<br>[796, 822, 0]"]
|
||||
38["Segment<br>[830, 891, 0]"]
|
||||
39["Segment<br>[899, 958, 0]"]
|
||||
44["Segment<br>[966, 1026, 0]"]
|
||||
49["Segment<br>[1034, 1093, 0]"]
|
||||
end
|
||||
subgraph path14 [Path]
|
||||
14["Path<br>[1177, 1239, 0]"]
|
||||
54["Segment<br>[1177, 1239, 0]"]
|
||||
14["Path<br>[1195, 1257, 0]"]
|
||||
54["Segment<br>[1195, 1257, 0]"]
|
||||
88[Solid2d]
|
||||
end
|
||||
subgraph path15 [Path]
|
||||
15["Path<br>[1177, 1239, 0]"]
|
||||
51["Segment<br>[1177, 1239, 0]"]
|
||||
15["Path<br>[1195, 1257, 0]"]
|
||||
51["Segment<br>[1195, 1257, 0]"]
|
||||
89[Solid2d]
|
||||
end
|
||||
subgraph path16 [Path]
|
||||
16["Path<br>[1177, 1239, 0]"]
|
||||
53["Segment<br>[1177, 1239, 0]"]
|
||||
16["Path<br>[1195, 1257, 0]"]
|
||||
53["Segment<br>[1195, 1257, 0]"]
|
||||
93[Solid2d]
|
||||
end
|
||||
subgraph path17 [Path]
|
||||
17["Path<br>[1177, 1239, 0]"]
|
||||
52["Segment<br>[1177, 1239, 0]"]
|
||||
17["Path<br>[1195, 1257, 0]"]
|
||||
52["Segment<br>[1195, 1257, 0]"]
|
||||
95[Solid2d]
|
||||
end
|
||||
subgraph path18 [Path]
|
||||
18["Path<br>[1265, 1343, 0]"]
|
||||
58["Segment<br>[1265, 1343, 0]"]
|
||||
18["Path<br>[1283, 1361, 0]"]
|
||||
58["Segment<br>[1283, 1361, 0]"]
|
||||
84[Solid2d]
|
||||
end
|
||||
subgraph path19 [Path]
|
||||
19["Path<br>[1265, 1343, 0]"]
|
||||
55["Segment<br>[1265, 1343, 0]"]
|
||||
19["Path<br>[1283, 1361, 0]"]
|
||||
55["Segment<br>[1283, 1361, 0]"]
|
||||
91[Solid2d]
|
||||
end
|
||||
subgraph path20 [Path]
|
||||
20["Path<br>[1265, 1343, 0]"]
|
||||
56["Segment<br>[1265, 1343, 0]"]
|
||||
20["Path<br>[1283, 1361, 0]"]
|
||||
56["Segment<br>[1283, 1361, 0]"]
|
||||
92[Solid2d]
|
||||
end
|
||||
subgraph path21 [Path]
|
||||
21["Path<br>[1265, 1343, 0]"]
|
||||
57["Segment<br>[1265, 1343, 0]"]
|
||||
21["Path<br>[1283, 1361, 0]"]
|
||||
57["Segment<br>[1283, 1361, 0]"]
|
||||
100[Solid2d]
|
||||
end
|
||||
subgraph path22 [Path]
|
||||
22["Path<br>[1923, 1958, 0]"]
|
||||
59["Segment<br>[1964, 1998, 0]"]
|
||||
60["Segment<br>[2004, 2043, 0]"]
|
||||
61["Segment<br>[2049, 2087, 0]"]
|
||||
62["Segment<br>[2093, 2132, 0]"]
|
||||
63["Segment<br>[2138, 2172, 0]"]
|
||||
64["Segment<br>[2178, 2221, 0]"]
|
||||
65["Segment<br>[2227, 2260, 0]"]
|
||||
66["Segment<br>[2266, 2305, 0]"]
|
||||
67["Segment<br>[2311, 2350, 0]"]
|
||||
68["Segment<br>[2356, 2395, 0]"]
|
||||
69["Segment<br>[2401, 2444, 0]"]
|
||||
70["Segment<br>[2450, 2501, 0]"]
|
||||
71["Segment<br>[2507, 2551, 0]"]
|
||||
72["Segment<br>[2557, 2596, 0]"]
|
||||
73["Segment<br>[2602, 2640, 0]"]
|
||||
74["Segment<br>[2646, 2711, 0]"]
|
||||
75["Segment<br>[2717, 2724, 0]"]
|
||||
22["Path<br>[1941, 1976, 0]"]
|
||||
59["Segment<br>[1982, 2016, 0]"]
|
||||
60["Segment<br>[2022, 2061, 0]"]
|
||||
61["Segment<br>[2067, 2105, 0]"]
|
||||
62["Segment<br>[2111, 2150, 0]"]
|
||||
63["Segment<br>[2156, 2190, 0]"]
|
||||
64["Segment<br>[2196, 2239, 0]"]
|
||||
65["Segment<br>[2245, 2278, 0]"]
|
||||
66["Segment<br>[2284, 2323, 0]"]
|
||||
67["Segment<br>[2329, 2368, 0]"]
|
||||
68["Segment<br>[2374, 2413, 0]"]
|
||||
69["Segment<br>[2419, 2462, 0]"]
|
||||
70["Segment<br>[2468, 2519, 0]"]
|
||||
71["Segment<br>[2525, 2569, 0]"]
|
||||
72["Segment<br>[2575, 2614, 0]"]
|
||||
73["Segment<br>[2620, 2658, 0]"]
|
||||
74["Segment<br>[2664, 2729, 0]"]
|
||||
75["Segment<br>[2735, 2742, 0]"]
|
||||
96[Solid2d]
|
||||
end
|
||||
subgraph path23 [Path]
|
||||
23["Path<br>[2809, 2882, 0]"]
|
||||
76["Segment<br>[2809, 2882, 0]"]
|
||||
23["Path<br>[2827, 2900, 0]"]
|
||||
76["Segment<br>[2827, 2900, 0]"]
|
||||
86[Solid2d]
|
||||
end
|
||||
subgraph path24 [Path]
|
||||
24["Path<br>[2907, 2980, 0]"]
|
||||
77["Segment<br>[2907, 2980, 0]"]
|
||||
24["Path<br>[2925, 2998, 0]"]
|
||||
77["Segment<br>[2925, 2998, 0]"]
|
||||
98[Solid2d]
|
||||
end
|
||||
subgraph path25 [Path]
|
||||
25["Path<br>[3005, 3078, 0]"]
|
||||
78["Segment<br>[3005, 3078, 0]"]
|
||||
25["Path<br>[3023, 3096, 0]"]
|
||||
78["Segment<br>[3023, 3096, 0]"]
|
||||
85[Solid2d]
|
||||
end
|
||||
subgraph path26 [Path]
|
||||
26["Path<br>[3103, 3176, 0]"]
|
||||
79["Segment<br>[3103, 3176, 0]"]
|
||||
26["Path<br>[3121, 3194, 0]"]
|
||||
79["Segment<br>[3121, 3194, 0]"]
|
||||
94[Solid2d]
|
||||
end
|
||||
subgraph path27 [Path]
|
||||
27["Path<br>[3240, 3379, 0]"]
|
||||
80["Segment<br>[3240, 3379, 0]"]
|
||||
27["Path<br>[3258, 3397, 0]"]
|
||||
80["Segment<br>[3258, 3397, 0]"]
|
||||
87[Solid2d]
|
||||
end
|
||||
subgraph path28 [Path]
|
||||
28["Path<br>[3404, 3541, 0]"]
|
||||
81["Segment<br>[3404, 3541, 0]"]
|
||||
28["Path<br>[3422, 3559, 0]"]
|
||||
81["Segment<br>[3422, 3559, 0]"]
|
||||
99[Solid2d]
|
||||
end
|
||||
subgraph path29 [Path]
|
||||
29["Path<br>[3566, 3713, 0]"]
|
||||
82["Segment<br>[3566, 3713, 0]"]
|
||||
29["Path<br>[3584, 3731, 0]"]
|
||||
82["Segment<br>[3584, 3731, 0]"]
|
||||
90[Solid2d]
|
||||
end
|
||||
subgraph path30 [Path]
|
||||
30["Path<br>[3738, 3884, 0]"]
|
||||
83["Segment<br>[3738, 3884, 0]"]
|
||||
30["Path<br>[3756, 3902, 0]"]
|
||||
83["Segment<br>[3756, 3902, 0]"]
|
||||
97[Solid2d]
|
||||
end
|
||||
1["Plane<br>[702, 727, 0]"]
|
||||
2["Plane<br>[702, 727, 0]"]
|
||||
3["Plane<br>[702, 727, 0]"]
|
||||
4["Plane<br>[702, 727, 0]"]
|
||||
5["Plane<br>[1152, 1169, 0]"]
|
||||
6["Plane<br>[1152, 1169, 0]"]
|
||||
7["Plane<br>[1152, 1169, 0]"]
|
||||
8["Plane<br>[1152, 1169, 0]"]
|
||||
9["Plane<br>[1900, 1917, 0]"]
|
||||
101["Sweep Sweep<br>[1352, 1375, 0]"]
|
||||
102["Sweep Sweep<br>[1352, 1375, 0]"]
|
||||
103["Sweep Sweep<br>[1352, 1375, 0]"]
|
||||
104["Sweep Sweep<br>[1352, 1375, 0]"]
|
||||
105["Sweep Extrusion<br>[3937, 3966, 0]"]
|
||||
1["Plane<br>[720, 745, 0]"]
|
||||
2["Plane<br>[720, 745, 0]"]
|
||||
3["Plane<br>[720, 745, 0]"]
|
||||
4["Plane<br>[720, 745, 0]"]
|
||||
5["Plane<br>[1170, 1187, 0]"]
|
||||
6["Plane<br>[1170, 1187, 0]"]
|
||||
7["Plane<br>[1170, 1187, 0]"]
|
||||
8["Plane<br>[1170, 1187, 0]"]
|
||||
9["Plane<br>[1918, 1935, 0]"]
|
||||
101["Sweep Sweep<br>[1370, 1393, 0]"]
|
||||
102["Sweep Sweep<br>[1370, 1393, 0]"]
|
||||
103["Sweep Sweep<br>[1370, 1393, 0]"]
|
||||
104["Sweep Sweep<br>[1370, 1393, 0]"]
|
||||
105["Sweep Extrusion<br>[3955, 3984, 0]"]
|
||||
106[Wall]
|
||||
107[Wall]
|
||||
108[Wall]
|
||||
@ -217,10 +217,10 @@ flowchart LR
|
||||
173["SweepEdge Adjacent"]
|
||||
174["SweepEdge Adjacent"]
|
||||
175["SweepEdge Adjacent"]
|
||||
176["EdgeCut Fillet<br>[3972, 4106, 0]"]
|
||||
177["EdgeCut Fillet<br>[3972, 4106, 0]"]
|
||||
178["EdgeCut Fillet<br>[4112, 4246, 0]"]
|
||||
179["EdgeCut Fillet<br>[4112, 4246, 0]"]
|
||||
176["EdgeCut Fillet<br>[3990, 4124, 0]"]
|
||||
177["EdgeCut Fillet<br>[3990, 4124, 0]"]
|
||||
178["EdgeCut Fillet<br>[4130, 4264, 0]"]
|
||||
179["EdgeCut Fillet<br>[4130, 4264, 0]"]
|
||||
1 --- 11
|
||||
2 --- 10
|
||||
3 --- 13
|
||||
|
||||
@ -5729,6 +5729,31 @@ description: Result of parsing exhaust-manifold.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -28,9 +28,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1991,
|
||||
"end": 1997,
|
||||
"start": 1991,
|
||||
"commentStart": 2009,
|
||||
"end": 2015,
|
||||
"start": 2009,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -62,9 +62,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2165,
|
||||
"end": 2171,
|
||||
"start": 2165,
|
||||
"commentStart": 2183,
|
||||
"end": 2189,
|
||||
"start": 2183,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -75,9 +75,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2214,
|
||||
"end": 2220,
|
||||
"start": 2214,
|
||||
"commentStart": 2232,
|
||||
"end": 2238,
|
||||
"start": 2232,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -88,9 +88,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2253,
|
||||
"end": 2259,
|
||||
"start": 2253,
|
||||
"commentStart": 2271,
|
||||
"end": 2277,
|
||||
"start": 2271,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -122,9 +122,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2437,
|
||||
"end": 2443,
|
||||
"start": 2437,
|
||||
"commentStart": 2455,
|
||||
"end": 2461,
|
||||
"start": 2455,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg07"
|
||||
},
|
||||
@ -135,9 +135,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2494,
|
||||
"end": 2500,
|
||||
"start": 2494,
|
||||
"commentStart": 2512,
|
||||
"end": 2518,
|
||||
"start": 2512,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg08"
|
||||
},
|
||||
@ -148,9 +148,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2544,
|
||||
"end": 2550,
|
||||
"start": 2544,
|
||||
"commentStart": 2562,
|
||||
"end": 2568,
|
||||
"start": 2562,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg09"
|
||||
},
|
||||
@ -192,9 +192,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
-1.25
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1991,
|
||||
"end": 1997,
|
||||
"start": 1991,
|
||||
"commentStart": 2009,
|
||||
"end": 2015,
|
||||
"start": 2009,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -289,9 +289,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
-1.25
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2165,
|
||||
"end": 2171,
|
||||
"start": 2165,
|
||||
"commentStart": 2183,
|
||||
"end": 2189,
|
||||
"start": 2183,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -314,9 +314,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
-1.25
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2214,
|
||||
"end": 2220,
|
||||
"start": 2214,
|
||||
"commentStart": 2232,
|
||||
"end": 2238,
|
||||
"start": 2232,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -339,9 +339,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
1.35
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2253,
|
||||
"end": 2259,
|
||||
"start": 2253,
|
||||
"commentStart": 2271,
|
||||
"end": 2277,
|
||||
"start": 2271,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -436,9 +436,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
1.35
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2437,
|
||||
"end": 2443,
|
||||
"start": 2437,
|
||||
"commentStart": 2455,
|
||||
"end": 2461,
|
||||
"start": 2455,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg07"
|
||||
},
|
||||
@ -461,9 +461,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
1.35
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2494,
|
||||
"end": 2500,
|
||||
"start": 2494,
|
||||
"commentStart": 2512,
|
||||
"end": 2518,
|
||||
"start": 2512,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg08"
|
||||
},
|
||||
@ -486,9 +486,9 @@ description: Variables in memory after executing exhaust-manifold.kcl
|
||||
-1.25
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2544,
|
||||
"end": 2550,
|
||||
"start": 2544,
|
||||
"commentStart": 2562,
|
||||
"end": 2568,
|
||||
"start": 2562,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg09"
|
||||
},
|
||||
|
||||
@ -1,39 +1,39 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[863, 948, 0]"]
|
||||
11["Segment<br>[863, 948, 0]"]
|
||||
6["Path<br>[881, 966, 0]"]
|
||||
11["Segment<br>[881, 966, 0]"]
|
||||
20[Solid2d]
|
||||
end
|
||||
subgraph path7 [Path]
|
||||
7["Path<br>[1185, 1230, 0]"]
|
||||
12["Segment<br>[1185, 1230, 0]"]
|
||||
7["Path<br>[1203, 1248, 0]"]
|
||||
12["Segment<br>[1203, 1248, 0]"]
|
||||
18[Solid2d]
|
||||
end
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[1413, 1467, 0]"]
|
||||
13["Segment<br>[1413, 1467, 0]"]
|
||||
8["Path<br>[1431, 1485, 0]"]
|
||||
13["Segment<br>[1431, 1485, 0]"]
|
||||
19[Solid2d]
|
||||
end
|
||||
subgraph path9 [Path]
|
||||
9["Path<br>[1630, 1687, 0]"]
|
||||
14["Segment<br>[1630, 1687, 0]"]
|
||||
9["Path<br>[1648, 1705, 0]"]
|
||||
14["Segment<br>[1648, 1705, 0]"]
|
||||
17[Solid2d]
|
||||
end
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[1822, 1867, 0]"]
|
||||
15["Segment<br>[1822, 1867, 0]"]
|
||||
10["Path<br>[1840, 1885, 0]"]
|
||||
15["Segment<br>[1840, 1885, 0]"]
|
||||
16[Solid2d]
|
||||
end
|
||||
1["Plane<br>[840, 857, 0]"]
|
||||
2["Plane<br>[1162, 1179, 0]"]
|
||||
3["StartSketchOnFace<br>[1777, 1816, 0]"]
|
||||
4["StartSketchOnFace<br>[1370, 1407, 0]"]
|
||||
5["StartSketchOnFace<br>[1585, 1624, 0]"]
|
||||
21["Sweep Extrusion<br>[1268, 1299, 0]"]
|
||||
22["Sweep Extrusion<br>[1473, 1508, 0]"]
|
||||
23["Sweep Extrusion<br>[1693, 1726, 0]"]
|
||||
24["Sweep Extrusion<br>[1873, 1948, 0]"]
|
||||
1["Plane<br>[858, 875, 0]"]
|
||||
2["Plane<br>[1180, 1197, 0]"]
|
||||
3["StartSketchOnFace<br>[1795, 1834, 0]"]
|
||||
4["StartSketchOnFace<br>[1388, 1425, 0]"]
|
||||
5["StartSketchOnFace<br>[1603, 1642, 0]"]
|
||||
21["Sweep Extrusion<br>[1286, 1317, 0]"]
|
||||
22["Sweep Extrusion<br>[1491, 1526, 0]"]
|
||||
23["Sweep Extrusion<br>[1711, 1744, 0]"]
|
||||
24["Sweep Extrusion<br>[1891, 1966, 0]"]
|
||||
25[Wall]
|
||||
26[Wall]
|
||||
27[Wall]
|
||||
|
||||
@ -2113,6 +2113,31 @@ description: Result of parsing flange.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,68 +1,68 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[813, 851, 0]"]
|
||||
13["Segment<br>[859, 909, 0]"]
|
||||
14["Segment<br>[917, 966, 0]"]
|
||||
15["Segment<br>[974, 1026, 0]"]
|
||||
16["Segment<br>[1034, 1082, 0]"]
|
||||
17["Segment<br>[1090, 1134, 0]"]
|
||||
18["Segment<br>[1142, 1187, 0]"]
|
||||
19["Segment<br>[1195, 1244, 0]"]
|
||||
20["Segment<br>[1252, 1271, 0]"]
|
||||
6["Path<br>[831, 869, 0]"]
|
||||
13["Segment<br>[877, 927, 0]"]
|
||||
14["Segment<br>[935, 984, 0]"]
|
||||
15["Segment<br>[992, 1044, 0]"]
|
||||
16["Segment<br>[1052, 1100, 0]"]
|
||||
17["Segment<br>[1108, 1152, 0]"]
|
||||
18["Segment<br>[1160, 1205, 0]"]
|
||||
19["Segment<br>[1213, 1262, 0]"]
|
||||
20["Segment<br>[1270, 1289, 0]"]
|
||||
42[Solid2d]
|
||||
end
|
||||
subgraph path7 [Path]
|
||||
7["Path<br>[1974, 2028, 0]"]
|
||||
21["Segment<br>[2034, 2087, 0]"]
|
||||
22["Segment<br>[2093, 2143, 0]"]
|
||||
23["Segment<br>[2149, 2203, 0]"]
|
||||
24["Segment<br>[2209, 2229, 0]"]
|
||||
7["Path<br>[1992, 2046, 0]"]
|
||||
21["Segment<br>[2052, 2105, 0]"]
|
||||
22["Segment<br>[2111, 2161, 0]"]
|
||||
23["Segment<br>[2167, 2221, 0]"]
|
||||
24["Segment<br>[2227, 2247, 0]"]
|
||||
38[Solid2d]
|
||||
end
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[2253, 2416, 0]"]
|
||||
25["Segment<br>[2253, 2416, 0]"]
|
||||
8["Path<br>[2271, 2434, 0]"]
|
||||
25["Segment<br>[2271, 2434, 0]"]
|
||||
40[Solid2d]
|
||||
end
|
||||
subgraph path9 [Path]
|
||||
9["Path<br>[2798, 2853, 0]"]
|
||||
26["Segment<br>[2859, 2913, 0]"]
|
||||
27["Segment<br>[2919, 2969, 0]"]
|
||||
28["Segment<br>[2975, 3028, 0]"]
|
||||
29["Segment<br>[3034, 3054, 0]"]
|
||||
9["Path<br>[2816, 2871, 0]"]
|
||||
26["Segment<br>[2877, 2931, 0]"]
|
||||
27["Segment<br>[2937, 2987, 0]"]
|
||||
28["Segment<br>[2993, 3046, 0]"]
|
||||
29["Segment<br>[3052, 3072, 0]"]
|
||||
39[Solid2d]
|
||||
end
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[3078, 3244, 0]"]
|
||||
30["Segment<br>[3078, 3244, 0]"]
|
||||
10["Path<br>[3096, 3262, 0]"]
|
||||
30["Segment<br>[3096, 3262, 0]"]
|
||||
43[Solid2d]
|
||||
end
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[3824, 3865, 0]"]
|
||||
31["Segment<br>[3871, 3891, 0]"]
|
||||
32["Segment<br>[3897, 3920, 0]"]
|
||||
33["Segment<br>[3926, 3933, 0]"]
|
||||
11["Path<br>[3842, 3883, 0]"]
|
||||
31["Segment<br>[3889, 3909, 0]"]
|
||||
32["Segment<br>[3915, 3938, 0]"]
|
||||
33["Segment<br>[3944, 3951, 0]"]
|
||||
41[Solid2d]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[4048, 4088, 0]"]
|
||||
34["Segment<br>[4094, 4114, 0]"]
|
||||
35["Segment<br>[4120, 4141, 0]"]
|
||||
36["Segment<br>[4147, 4168, 0]"]
|
||||
37["Segment<br>[4174, 4181, 0]"]
|
||||
12["Path<br>[4066, 4106, 0]"]
|
||||
34["Segment<br>[4112, 4132, 0]"]
|
||||
35["Segment<br>[4138, 4159, 0]"]
|
||||
36["Segment<br>[4165, 4186, 0]"]
|
||||
37["Segment<br>[4192, 4199, 0]"]
|
||||
44[Solid2d]
|
||||
end
|
||||
1["Plane<br>[778, 805, 0]"]
|
||||
2["Plane<br>[1945, 1968, 0]"]
|
||||
3["Plane<br>[2769, 2792, 0]"]
|
||||
4["Plane<br>[3795, 3818, 0]"]
|
||||
5["Plane<br>[4019, 4042, 0]"]
|
||||
45["Sweep Extrusion<br>[1391, 1425, 0]"]
|
||||
46["Sweep Extrusion<br>[2423, 2448, 0]"]
|
||||
47["Sweep Extrusion<br>[3251, 3276, 0]"]
|
||||
48["Sweep Extrusion<br>[3939, 3967, 0]"]
|
||||
49["Sweep Extrusion<br>[4187, 4215, 0]"]
|
||||
1["Plane<br>[796, 823, 0]"]
|
||||
2["Plane<br>[1963, 1986, 0]"]
|
||||
3["Plane<br>[2787, 2810, 0]"]
|
||||
4["Plane<br>[3813, 3836, 0]"]
|
||||
5["Plane<br>[4037, 4060, 0]"]
|
||||
45["Sweep Extrusion<br>[1409, 1443, 0]"]
|
||||
46["Sweep Extrusion<br>[2441, 2466, 0]"]
|
||||
47["Sweep Extrusion<br>[3269, 3294, 0]"]
|
||||
48["Sweep Extrusion<br>[3957, 3985, 0]"]
|
||||
49["Sweep Extrusion<br>[4205, 4233, 0]"]
|
||||
50[Wall]
|
||||
51[Wall]
|
||||
52[Wall]
|
||||
@ -142,14 +142,14 @@ flowchart LR
|
||||
126["SweepEdge Adjacent"]
|
||||
127["SweepEdge Adjacent"]
|
||||
128["SweepEdge Adjacent"]
|
||||
129["EdgeCut Fillet<br>[1431, 1690, 0]"]
|
||||
130["EdgeCut Fillet<br>[1431, 1690, 0]"]
|
||||
131["EdgeCut Fillet<br>[1431, 1690, 0]"]
|
||||
132["EdgeCut Fillet<br>[1431, 1690, 0]"]
|
||||
133["EdgeCut Fillet<br>[2454, 2599, 0]"]
|
||||
134["EdgeCut Fillet<br>[2454, 2599, 0]"]
|
||||
135["EdgeCut Fillet<br>[3282, 3427, 0]"]
|
||||
136["EdgeCut Fillet<br>[3282, 3427, 0]"]
|
||||
129["EdgeCut Fillet<br>[1449, 1708, 0]"]
|
||||
130["EdgeCut Fillet<br>[1449, 1708, 0]"]
|
||||
131["EdgeCut Fillet<br>[1449, 1708, 0]"]
|
||||
132["EdgeCut Fillet<br>[1449, 1708, 0]"]
|
||||
133["EdgeCut Fillet<br>[2472, 2617, 0]"]
|
||||
134["EdgeCut Fillet<br>[2472, 2617, 0]"]
|
||||
135["EdgeCut Fillet<br>[3300, 3445, 0]"]
|
||||
136["EdgeCut Fillet<br>[3300, 3445, 0]"]
|
||||
1 --- 6
|
||||
2 --- 7
|
||||
2 --- 8
|
||||
|
||||
@ -7694,6 +7694,31 @@ description: Result of parsing focusrite-scarlett-mounting-bracket.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -15,9 +15,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 902,
|
||||
"end": 908,
|
||||
"start": 902,
|
||||
"commentStart": 920,
|
||||
"end": 926,
|
||||
"start": 920,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -28,9 +28,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 959,
|
||||
"end": 965,
|
||||
"start": 959,
|
||||
"commentStart": 977,
|
||||
"end": 983,
|
||||
"start": 977,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -41,9 +41,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1019,
|
||||
"end": 1025,
|
||||
"start": 1019,
|
||||
"commentStart": 1037,
|
||||
"end": 1043,
|
||||
"start": 1037,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -54,9 +54,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1075,
|
||||
"end": 1081,
|
||||
"start": 1075,
|
||||
"commentStart": 1093,
|
||||
"end": 1099,
|
||||
"start": 1093,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -67,9 +67,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1127,
|
||||
"end": 1133,
|
||||
"start": 1127,
|
||||
"commentStart": 1145,
|
||||
"end": 1151,
|
||||
"start": 1145,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge5"
|
||||
},
|
||||
@ -80,9 +80,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1180,
|
||||
"end": 1186,
|
||||
"start": 1180,
|
||||
"commentStart": 1198,
|
||||
"end": 1204,
|
||||
"start": 1198,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge6"
|
||||
},
|
||||
@ -93,9 +93,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1237,
|
||||
"end": 1243,
|
||||
"start": 1237,
|
||||
"commentStart": 1255,
|
||||
"end": 1261,
|
||||
"start": 1255,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge7"
|
||||
},
|
||||
@ -106,9 +106,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1264,
|
||||
"end": 1270,
|
||||
"start": 1264,
|
||||
"commentStart": 1282,
|
||||
"end": 1288,
|
||||
"start": 1282,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge8"
|
||||
},
|
||||
@ -129,9 +129,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
49.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 902,
|
||||
"end": 908,
|
||||
"start": 902,
|
||||
"commentStart": 920,
|
||||
"end": 926,
|
||||
"start": 920,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -154,9 +154,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
-4.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 959,
|
||||
"end": 965,
|
||||
"start": 959,
|
||||
"commentStart": 977,
|
||||
"end": 983,
|
||||
"start": 977,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -179,9 +179,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
-4.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1019,
|
||||
"end": 1025,
|
||||
"start": 1019,
|
||||
"commentStart": 1037,
|
||||
"end": 1043,
|
||||
"start": 1037,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -204,9 +204,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
49.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1075,
|
||||
"end": 1081,
|
||||
"start": 1075,
|
||||
"commentStart": 1093,
|
||||
"end": 1099,
|
||||
"start": 1093,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -229,9 +229,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
49.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1127,
|
||||
"end": 1133,
|
||||
"start": 1127,
|
||||
"commentStart": 1145,
|
||||
"end": 1151,
|
||||
"start": 1145,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge5"
|
||||
},
|
||||
@ -254,9 +254,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1180,
|
||||
"end": 1186,
|
||||
"start": 1180,
|
||||
"commentStart": 1198,
|
||||
"end": 1204,
|
||||
"start": 1198,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge6"
|
||||
},
|
||||
@ -279,9 +279,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1237,
|
||||
"end": 1243,
|
||||
"start": 1237,
|
||||
"commentStart": 1255,
|
||||
"end": 1261,
|
||||
"start": 1255,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge7"
|
||||
},
|
||||
@ -304,9 +304,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
49.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1264,
|
||||
"end": 1270,
|
||||
"start": 1264,
|
||||
"commentStart": 1282,
|
||||
"end": 1288,
|
||||
"start": 1282,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge8"
|
||||
},
|
||||
@ -691,9 +691,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
49.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 902,
|
||||
"end": 908,
|
||||
"start": 902,
|
||||
"commentStart": 920,
|
||||
"end": 926,
|
||||
"start": 920,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -716,9 +716,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
-4.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 959,
|
||||
"end": 965,
|
||||
"start": 959,
|
||||
"commentStart": 977,
|
||||
"end": 983,
|
||||
"start": 977,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -741,9 +741,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
-4.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1019,
|
||||
"end": 1025,
|
||||
"start": 1019,
|
||||
"commentStart": 1037,
|
||||
"end": 1043,
|
||||
"start": 1037,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -766,9 +766,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
49.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1075,
|
||||
"end": 1081,
|
||||
"start": 1075,
|
||||
"commentStart": 1093,
|
||||
"end": 1099,
|
||||
"start": 1093,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -791,9 +791,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
49.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1127,
|
||||
"end": 1133,
|
||||
"start": 1127,
|
||||
"commentStart": 1145,
|
||||
"end": 1151,
|
||||
"start": 1145,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge5"
|
||||
},
|
||||
@ -816,9 +816,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1180,
|
||||
"end": 1186,
|
||||
"start": 1180,
|
||||
"commentStart": 1198,
|
||||
"end": 1204,
|
||||
"start": 1198,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge6"
|
||||
},
|
||||
@ -841,9 +841,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1237,
|
||||
"end": 1243,
|
||||
"start": 1237,
|
||||
"commentStart": 1255,
|
||||
"end": 1261,
|
||||
"start": 1255,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge7"
|
||||
},
|
||||
@ -866,9 +866,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
49.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1264,
|
||||
"end": 1270,
|
||||
"start": 1264,
|
||||
"commentStart": 1282,
|
||||
"end": 1288,
|
||||
"start": 1282,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge8"
|
||||
},
|
||||
@ -1853,9 +1853,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2905,
|
||||
"end": 2912,
|
||||
"start": 2905,
|
||||
"commentStart": 2923,
|
||||
"end": 2930,
|
||||
"start": 2923,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge21"
|
||||
},
|
||||
@ -1866,9 +1866,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2961,
|
||||
"end": 2968,
|
||||
"start": 2961,
|
||||
"commentStart": 2979,
|
||||
"end": 2986,
|
||||
"start": 2979,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge22"
|
||||
},
|
||||
@ -1879,9 +1879,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 3020,
|
||||
"end": 3027,
|
||||
"start": 3020,
|
||||
"commentStart": 3038,
|
||||
"end": 3045,
|
||||
"start": 3038,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge23"
|
||||
},
|
||||
@ -1892,9 +1892,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 3046,
|
||||
"end": 3053,
|
||||
"start": 3046,
|
||||
"commentStart": 3064,
|
||||
"end": 3071,
|
||||
"start": 3064,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge24"
|
||||
},
|
||||
@ -1915,9 +1915,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
44.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2905,
|
||||
"end": 2912,
|
||||
"start": 2905,
|
||||
"commentStart": 2923,
|
||||
"end": 2930,
|
||||
"start": 2923,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge21"
|
||||
},
|
||||
@ -1940,9 +1940,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
35.6667
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2961,
|
||||
"end": 2968,
|
||||
"start": 2961,
|
||||
"commentStart": 2979,
|
||||
"end": 2986,
|
||||
"start": 2979,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge22"
|
||||
},
|
||||
@ -1965,9 +1965,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
19.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 3020,
|
||||
"end": 3027,
|
||||
"start": 3020,
|
||||
"commentStart": 3038,
|
||||
"end": 3045,
|
||||
"start": 3038,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge23"
|
||||
},
|
||||
@ -1990,9 +1990,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
10.6667
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 3046,
|
||||
"end": 3053,
|
||||
"start": 3046,
|
||||
"commentStart": 3064,
|
||||
"end": 3071,
|
||||
"start": 3064,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge24"
|
||||
},
|
||||
@ -2137,9 +2137,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2905,
|
||||
"end": 2912,
|
||||
"start": 2905,
|
||||
"commentStart": 2923,
|
||||
"end": 2930,
|
||||
"start": 2923,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge21"
|
||||
},
|
||||
@ -2150,9 +2150,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2961,
|
||||
"end": 2968,
|
||||
"start": 2961,
|
||||
"commentStart": 2979,
|
||||
"end": 2986,
|
||||
"start": 2979,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge22"
|
||||
},
|
||||
@ -2163,9 +2163,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 3020,
|
||||
"end": 3027,
|
||||
"start": 3020,
|
||||
"commentStart": 3038,
|
||||
"end": 3045,
|
||||
"start": 3038,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge23"
|
||||
},
|
||||
@ -2176,9 +2176,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 3046,
|
||||
"end": 3053,
|
||||
"start": 3046,
|
||||
"commentStart": 3064,
|
||||
"end": 3071,
|
||||
"start": 3064,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge24"
|
||||
},
|
||||
@ -2199,9 +2199,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
44.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2905,
|
||||
"end": 2912,
|
||||
"start": 2905,
|
||||
"commentStart": 2923,
|
||||
"end": 2930,
|
||||
"start": 2923,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge21"
|
||||
},
|
||||
@ -2224,9 +2224,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
35.6667
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2961,
|
||||
"end": 2968,
|
||||
"start": 2961,
|
||||
"commentStart": 2979,
|
||||
"end": 2986,
|
||||
"start": 2979,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge22"
|
||||
},
|
||||
@ -2249,9 +2249,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
19.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 3020,
|
||||
"end": 3027,
|
||||
"start": 3020,
|
||||
"commentStart": 3038,
|
||||
"end": 3045,
|
||||
"start": 3038,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge23"
|
||||
},
|
||||
@ -2274,9 +2274,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
10.6667
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 3046,
|
||||
"end": 3053,
|
||||
"start": 3046,
|
||||
"commentStart": 3064,
|
||||
"end": 3071,
|
||||
"start": 3064,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge24"
|
||||
},
|
||||
@ -2426,9 +2426,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2079,
|
||||
"end": 2086,
|
||||
"start": 2079,
|
||||
"commentStart": 2097,
|
||||
"end": 2104,
|
||||
"start": 2097,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge11"
|
||||
},
|
||||
@ -2439,9 +2439,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2135,
|
||||
"end": 2142,
|
||||
"start": 2135,
|
||||
"commentStart": 2153,
|
||||
"end": 2160,
|
||||
"start": 2153,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge12"
|
||||
},
|
||||
@ -2452,9 +2452,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2195,
|
||||
"end": 2202,
|
||||
"start": 2195,
|
||||
"commentStart": 2213,
|
||||
"end": 2220,
|
||||
"start": 2213,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge13"
|
||||
},
|
||||
@ -2465,9 +2465,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2221,
|
||||
"end": 2228,
|
||||
"start": 2221,
|
||||
"commentStart": 2239,
|
||||
"end": 2246,
|
||||
"start": 2239,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge14"
|
||||
},
|
||||
@ -2488,9 +2488,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
44.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2079,
|
||||
"end": 2086,
|
||||
"start": 2079,
|
||||
"commentStart": 2097,
|
||||
"end": 2104,
|
||||
"start": 2097,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge11"
|
||||
},
|
||||
@ -2513,9 +2513,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
35.6667
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2135,
|
||||
"end": 2142,
|
||||
"start": 2135,
|
||||
"commentStart": 2153,
|
||||
"end": 2160,
|
||||
"start": 2153,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge12"
|
||||
},
|
||||
@ -2538,9 +2538,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
19.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2195,
|
||||
"end": 2202,
|
||||
"start": 2195,
|
||||
"commentStart": 2213,
|
||||
"end": 2220,
|
||||
"start": 2213,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge13"
|
||||
},
|
||||
@ -2563,9 +2563,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
10.6667
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2221,
|
||||
"end": 2228,
|
||||
"start": 2221,
|
||||
"commentStart": 2239,
|
||||
"end": 2246,
|
||||
"start": 2239,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge14"
|
||||
},
|
||||
@ -2710,9 +2710,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2079,
|
||||
"end": 2086,
|
||||
"start": 2079,
|
||||
"commentStart": 2097,
|
||||
"end": 2104,
|
||||
"start": 2097,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge11"
|
||||
},
|
||||
@ -2723,9 +2723,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2135,
|
||||
"end": 2142,
|
||||
"start": 2135,
|
||||
"commentStart": 2153,
|
||||
"end": 2160,
|
||||
"start": 2153,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge12"
|
||||
},
|
||||
@ -2736,9 +2736,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2195,
|
||||
"end": 2202,
|
||||
"start": 2195,
|
||||
"commentStart": 2213,
|
||||
"end": 2220,
|
||||
"start": 2213,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge13"
|
||||
},
|
||||
@ -2749,9 +2749,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2221,
|
||||
"end": 2228,
|
||||
"start": 2221,
|
||||
"commentStart": 2239,
|
||||
"end": 2246,
|
||||
"start": 2239,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge14"
|
||||
},
|
||||
@ -2772,9 +2772,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
44.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2079,
|
||||
"end": 2086,
|
||||
"start": 2079,
|
||||
"commentStart": 2097,
|
||||
"end": 2104,
|
||||
"start": 2097,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge11"
|
||||
},
|
||||
@ -2797,9 +2797,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
35.6667
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2135,
|
||||
"end": 2142,
|
||||
"start": 2135,
|
||||
"commentStart": 2153,
|
||||
"end": 2160,
|
||||
"start": 2153,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge12"
|
||||
},
|
||||
@ -2822,9 +2822,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
19.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2195,
|
||||
"end": 2202,
|
||||
"start": 2195,
|
||||
"commentStart": 2213,
|
||||
"end": 2220,
|
||||
"start": 2213,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge13"
|
||||
},
|
||||
@ -2847,9 +2847,9 @@ description: Variables in memory after executing focusrite-scarlett-mounting-bra
|
||||
10.6667
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2221,
|
||||
"end": 2228,
|
||||
"start": 2221,
|
||||
"commentStart": 2239,
|
||||
"end": 2246,
|
||||
"start": 2239,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge14"
|
||||
},
|
||||
|
||||
@ -1,83 +1,83 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[999, 1043, 0]"]
|
||||
16["Segment<br>[1051, 1091, 0]"]
|
||||
17["Segment<br>[1099, 1145, 0]"]
|
||||
22["Segment<br>[1153, 1194, 0]"]
|
||||
25["Segment<br>[1202, 1267, 0]"]
|
||||
29["Segment<br>[1275, 1282, 0]"]
|
||||
6["Path<br>[1017, 1061, 0]"]
|
||||
16["Segment<br>[1069, 1109, 0]"]
|
||||
17["Segment<br>[1117, 1163, 0]"]
|
||||
22["Segment<br>[1171, 1212, 0]"]
|
||||
25["Segment<br>[1220, 1285, 0]"]
|
||||
29["Segment<br>[1293, 1300, 0]"]
|
||||
56[Solid2d]
|
||||
end
|
||||
subgraph path7 [Path]
|
||||
7["Path<br>[999, 1043, 0]"]
|
||||
15["Segment<br>[1051, 1091, 0]"]
|
||||
19["Segment<br>[1099, 1145, 0]"]
|
||||
24["Segment<br>[1153, 1194, 0]"]
|
||||
26["Segment<br>[1202, 1267, 0]"]
|
||||
30["Segment<br>[1275, 1282, 0]"]
|
||||
7["Path<br>[1017, 1061, 0]"]
|
||||
15["Segment<br>[1069, 1109, 0]"]
|
||||
19["Segment<br>[1117, 1163, 0]"]
|
||||
24["Segment<br>[1171, 1212, 0]"]
|
||||
26["Segment<br>[1220, 1285, 0]"]
|
||||
30["Segment<br>[1293, 1300, 0]"]
|
||||
58[Solid2d]
|
||||
end
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[999, 1043, 0]"]
|
||||
13["Segment<br>[1051, 1091, 0]"]
|
||||
20["Segment<br>[1099, 1145, 0]"]
|
||||
21["Segment<br>[1153, 1194, 0]"]
|
||||
27["Segment<br>[1202, 1267, 0]"]
|
||||
32["Segment<br>[1275, 1282, 0]"]
|
||||
8["Path<br>[1017, 1061, 0]"]
|
||||
13["Segment<br>[1069, 1109, 0]"]
|
||||
20["Segment<br>[1117, 1163, 0]"]
|
||||
21["Segment<br>[1171, 1212, 0]"]
|
||||
27["Segment<br>[1220, 1285, 0]"]
|
||||
32["Segment<br>[1293, 1300, 0]"]
|
||||
59[Solid2d]
|
||||
end
|
||||
subgraph path9 [Path]
|
||||
9["Path<br>[999, 1043, 0]"]
|
||||
14["Segment<br>[1051, 1091, 0]"]
|
||||
18["Segment<br>[1099, 1145, 0]"]
|
||||
23["Segment<br>[1153, 1194, 0]"]
|
||||
28["Segment<br>[1202, 1267, 0]"]
|
||||
31["Segment<br>[1275, 1282, 0]"]
|
||||
9["Path<br>[1017, 1061, 0]"]
|
||||
14["Segment<br>[1069, 1109, 0]"]
|
||||
18["Segment<br>[1117, 1163, 0]"]
|
||||
23["Segment<br>[1171, 1212, 0]"]
|
||||
28["Segment<br>[1220, 1285, 0]"]
|
||||
31["Segment<br>[1293, 1300, 0]"]
|
||||
60[Solid2d]
|
||||
end
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[1444, 1501, 0]"]
|
||||
33["Segment<br>[1507, 1539, 0]"]
|
||||
34["Segment<br>[1545, 1582, 0]"]
|
||||
35["Segment<br>[1588, 1621, 0]"]
|
||||
36["Segment<br>[1627, 1694, 0]"]
|
||||
37["Segment<br>[1700, 1707, 0]"]
|
||||
10["Path<br>[1462, 1519, 0]"]
|
||||
33["Segment<br>[1525, 1557, 0]"]
|
||||
34["Segment<br>[1563, 1600, 0]"]
|
||||
35["Segment<br>[1606, 1639, 0]"]
|
||||
36["Segment<br>[1645, 1712, 0]"]
|
||||
37["Segment<br>[1718, 1725, 0]"]
|
||||
57[Solid2d]
|
||||
end
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[2867, 2923, 0]"]
|
||||
38["Segment<br>[2929, 2988, 0]"]
|
||||
39["Segment<br>[2994, 3029, 0]"]
|
||||
40["Segment<br>[3035, 3068, 0]"]
|
||||
41["Segment<br>[3074, 3133, 0]"]
|
||||
42["Segment<br>[3139, 3175, 0]"]
|
||||
43["Segment<br>[3181, 3205, 0]"]
|
||||
44["Segment<br>[3211, 3218, 0]"]
|
||||
11["Path<br>[2885, 2941, 0]"]
|
||||
38["Segment<br>[2947, 3006, 0]"]
|
||||
39["Segment<br>[3012, 3047, 0]"]
|
||||
40["Segment<br>[3053, 3086, 0]"]
|
||||
41["Segment<br>[3092, 3151, 0]"]
|
||||
42["Segment<br>[3157, 3193, 0]"]
|
||||
43["Segment<br>[3199, 3223, 0]"]
|
||||
44["Segment<br>[3229, 3236, 0]"]
|
||||
54[Solid2d]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[3813, 3863, 0]"]
|
||||
45["Segment<br>[3869, 3919, 0]"]
|
||||
46["Segment<br>[3925, 3991, 0]"]
|
||||
47["Segment<br>[3997, 4048, 0]"]
|
||||
48["Segment<br>[4054, 4119, 0]"]
|
||||
49["Segment<br>[4125, 4178, 0]"]
|
||||
50["Segment<br>[4184, 4251, 0]"]
|
||||
51["Segment<br>[4257, 4331, 0]"]
|
||||
52["Segment<br>[4337, 4405, 0]"]
|
||||
53["Segment<br>[4411, 4418, 0]"]
|
||||
12["Path<br>[3831, 3881, 0]"]
|
||||
45["Segment<br>[3887, 3937, 0]"]
|
||||
46["Segment<br>[3943, 4009, 0]"]
|
||||
47["Segment<br>[4015, 4066, 0]"]
|
||||
48["Segment<br>[4072, 4137, 0]"]
|
||||
49["Segment<br>[4143, 4196, 0]"]
|
||||
50["Segment<br>[4202, 4269, 0]"]
|
||||
51["Segment<br>[4275, 4349, 0]"]
|
||||
52["Segment<br>[4355, 4423, 0]"]
|
||||
53["Segment<br>[4429, 4436, 0]"]
|
||||
55[Solid2d]
|
||||
end
|
||||
1["Plane<br>[1373, 1390, 0]"]
|
||||
2["Plane<br>[2764, 2806, 0]"]
|
||||
3["Plane<br>[3739, 3765, 0]"]
|
||||
4["StartSketchOnPlane<br>[2750, 2807, 0]"]
|
||||
5["StartSketchOnFace<br>[4575, 4614, 0]"]
|
||||
61["Sweep Extrusion<br>[2441, 2491, 0]"]
|
||||
62["Sweep Extrusion<br>[3252, 3296, 0]"]
|
||||
63["Sweep Extrusion<br>[4474, 4516, 0]"]
|
||||
64["Sweep Extrusion<br>[4794, 4844, 0]"]
|
||||
1["Plane<br>[1391, 1408, 0]"]
|
||||
2["Plane<br>[2782, 2824, 0]"]
|
||||
3["Plane<br>[3757, 3783, 0]"]
|
||||
4["StartSketchOnPlane<br>[2768, 2825, 0]"]
|
||||
5["StartSketchOnFace<br>[4593, 4632, 0]"]
|
||||
61["Sweep Extrusion<br>[2459, 2509, 0]"]
|
||||
62["Sweep Extrusion<br>[3270, 3314, 0]"]
|
||||
63["Sweep Extrusion<br>[4492, 4534, 0]"]
|
||||
64["Sweep Extrusion<br>[4812, 4862, 0]"]
|
||||
65[Wall]
|
||||
66[Wall]
|
||||
67[Wall]
|
||||
@ -156,10 +156,10 @@ flowchart LR
|
||||
140["SweepEdge Adjacent"]
|
||||
141["SweepEdge Adjacent"]
|
||||
142["SweepEdge Adjacent"]
|
||||
143["EdgeCut Fillet<br>[2528, 2669, 0]"]
|
||||
144["EdgeCut Fillet<br>[2528, 2669, 0]"]
|
||||
145["EdgeCut Fillet<br>[3339, 3470, 0]"]
|
||||
146["EdgeCut Fillet<br>[3339, 3470, 0]"]
|
||||
143["EdgeCut Fillet<br>[2546, 2687, 0]"]
|
||||
144["EdgeCut Fillet<br>[2546, 2687, 0]"]
|
||||
145["EdgeCut Fillet<br>[3357, 3488, 0]"]
|
||||
146["EdgeCut Fillet<br>[3357, 3488, 0]"]
|
||||
1 --- 6
|
||||
1 --- 8
|
||||
1 --- 9
|
||||
|
||||
@ -6824,6 +6824,31 @@ description: Result of parsing food-service-spatula.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -27,9 +27,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1572,
|
||||
"end": 1581,
|
||||
"start": 1572,
|
||||
"commentStart": 1590,
|
||||
"end": 1599,
|
||||
"start": 1590,
|
||||
"type": "TagDeclarator",
|
||||
"value": "backEdge"
|
||||
},
|
||||
@ -90,9 +90,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
-30.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1572,
|
||||
"end": 1581,
|
||||
"start": 1572,
|
||||
"commentStart": 1590,
|
||||
"end": 1599,
|
||||
"start": 1590,
|
||||
"type": "TagDeclarator",
|
||||
"value": "backEdge"
|
||||
},
|
||||
@ -299,9 +299,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
-30.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1572,
|
||||
"end": 1581,
|
||||
"start": 1572,
|
||||
"commentStart": 1590,
|
||||
"end": 1599,
|
||||
"start": 1590,
|
||||
"type": "TagDeclarator",
|
||||
"value": "backEdge"
|
||||
},
|
||||
@ -551,9 +551,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4318,
|
||||
"end": 4330,
|
||||
"start": 4318,
|
||||
"commentStart": 4336,
|
||||
"end": 4348,
|
||||
"start": 4336,
|
||||
"type": "TagDeclarator",
|
||||
"value": "gripEdgeTop"
|
||||
},
|
||||
@ -713,9 +713,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
7.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4318,
|
||||
"end": 4330,
|
||||
"start": 4318,
|
||||
"commentStart": 4336,
|
||||
"end": 4348,
|
||||
"start": 4336,
|
||||
"type": "TagDeclarator",
|
||||
"value": "gripEdgeTop"
|
||||
},
|
||||
@ -1058,9 +1058,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4318,
|
||||
"end": 4330,
|
||||
"start": 4318,
|
||||
"commentStart": 4336,
|
||||
"end": 4348,
|
||||
"start": 4336,
|
||||
"type": "TagDeclarator",
|
||||
"value": "gripEdgeTop"
|
||||
},
|
||||
@ -1220,9 +1220,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
7.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4318,
|
||||
"end": 4330,
|
||||
"start": 4318,
|
||||
"commentStart": 4336,
|
||||
"end": 4348,
|
||||
"start": 4336,
|
||||
"type": "TagDeclarator",
|
||||
"value": "gripEdgeTop"
|
||||
},
|
||||
@ -1538,9 +1538,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
7.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4318,
|
||||
"end": 4330,
|
||||
"start": 4318,
|
||||
"commentStart": 4336,
|
||||
"end": 4348,
|
||||
"start": 4336,
|
||||
"type": "TagDeclarator",
|
||||
"value": "gripEdgeTop"
|
||||
},
|
||||
@ -1729,9 +1729,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2970,
|
||||
"end": 2987,
|
||||
"start": 2970,
|
||||
"commentStart": 2988,
|
||||
"end": 3005,
|
||||
"start": 2988,
|
||||
"type": "TagDeclarator",
|
||||
"value": "handleBottomEdge"
|
||||
},
|
||||
@ -1756,9 +1756,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 3118,
|
||||
"end": 3132,
|
||||
"start": 3118,
|
||||
"commentStart": 3136,
|
||||
"end": 3150,
|
||||
"start": 3136,
|
||||
"type": "TagDeclarator",
|
||||
"value": "handleTopEdge"
|
||||
},
|
||||
@ -1800,9 +1800,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
3.5
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2970,
|
||||
"end": 2987,
|
||||
"start": 2970,
|
||||
"commentStart": 2988,
|
||||
"end": 3005,
|
||||
"start": 2988,
|
||||
"type": "TagDeclarator",
|
||||
"value": "handleBottomEdge"
|
||||
},
|
||||
@ -1863,9 +1863,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
91.3213
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 3118,
|
||||
"end": 3132,
|
||||
"start": 3118,
|
||||
"commentStart": 3136,
|
||||
"end": 3150,
|
||||
"start": 3136,
|
||||
"type": "TagDeclarator",
|
||||
"value": "handleTopEdge"
|
||||
},
|
||||
@ -2211,9 +2211,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
3.5
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2970,
|
||||
"end": 2987,
|
||||
"start": 2970,
|
||||
"commentStart": 2988,
|
||||
"end": 3005,
|
||||
"start": 2988,
|
||||
"type": "TagDeclarator",
|
||||
"value": "handleBottomEdge"
|
||||
},
|
||||
@ -2274,9 +2274,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
91.3213
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 3118,
|
||||
"end": 3132,
|
||||
"start": 3118,
|
||||
"commentStart": 3136,
|
||||
"end": 3150,
|
||||
"start": 3136,
|
||||
"type": "TagDeclarator",
|
||||
"value": "handleTopEdge"
|
||||
},
|
||||
@ -2536,9 +2536,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4318,
|
||||
"end": 4330,
|
||||
"start": 4318,
|
||||
"commentStart": 4336,
|
||||
"end": 4348,
|
||||
"start": 4336,
|
||||
"type": "TagDeclarator",
|
||||
"value": "gripEdgeTop"
|
||||
},
|
||||
@ -2698,9 +2698,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
7.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4318,
|
||||
"end": 4330,
|
||||
"start": 4318,
|
||||
"commentStart": 4336,
|
||||
"end": 4348,
|
||||
"start": 4336,
|
||||
"type": "TagDeclarator",
|
||||
"value": "gripEdgeTop"
|
||||
},
|
||||
@ -3370,9 +3370,9 @@ description: Variables in memory after executing food-service-spatula.kcl
|
||||
-30.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1572,
|
||||
"end": 1581,
|
||||
"start": 1572,
|
||||
"commentStart": 1590,
|
||||
"end": 1599,
|
||||
"start": 1590,
|
||||
"type": "TagDeclarator",
|
||||
"value": "backEdge"
|
||||
},
|
||||
|
||||
@ -1,164 +1,164 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path16 [Path]
|
||||
16["Path<br>[265, 309, 0]"]
|
||||
29["Segment<br>[315, 379, 0]"]
|
||||
30["Segment<br>[385, 483, 0]"]
|
||||
31["Segment<br>[489, 606, 0]"]
|
||||
32["Segment<br>[612, 668, 0]"]
|
||||
33["Segment<br>[674, 681, 0]"]
|
||||
16["Path<br>[283, 327, 0]"]
|
||||
29["Segment<br>[333, 397, 0]"]
|
||||
30["Segment<br>[403, 501, 0]"]
|
||||
31["Segment<br>[507, 624, 0]"]
|
||||
32["Segment<br>[630, 686, 0]"]
|
||||
33["Segment<br>[692, 699, 0]"]
|
||||
102[Solid2d]
|
||||
end
|
||||
subgraph path17 [Path]
|
||||
17["Path<br>[971, 1015, 0]"]
|
||||
34["Segment<br>[1021, 1040, 0]"]
|
||||
35["Segment<br>[1046, 1080, 0]"]
|
||||
36["Segment<br>[1086, 1137, 0]"]
|
||||
37["Segment<br>[1143, 1194, 0]"]
|
||||
38["Segment<br>[1200, 1251, 0]"]
|
||||
39["Segment<br>[1257, 1315, 0]"]
|
||||
40["Segment<br>[1321, 1370, 0]"]
|
||||
41["Segment<br>[1376, 1416, 0]"]
|
||||
42["Segment<br>[1422, 1441, 0]"]
|
||||
43["Segment<br>[1447, 1500, 0]"]
|
||||
44["Segment<br>[1506, 1555, 0]"]
|
||||
45["Segment<br>[1561, 1631, 0]"]
|
||||
46["Segment<br>[1637, 1688, 0]"]
|
||||
47["Segment<br>[1694, 1764, 0]"]
|
||||
48["Segment<br>[1770, 1821, 0]"]
|
||||
49["Segment<br>[1827, 1883, 0]"]
|
||||
50["Segment<br>[1889, 1896, 0]"]
|
||||
17["Path<br>[989, 1033, 0]"]
|
||||
34["Segment<br>[1039, 1058, 0]"]
|
||||
35["Segment<br>[1064, 1098, 0]"]
|
||||
36["Segment<br>[1104, 1155, 0]"]
|
||||
37["Segment<br>[1161, 1212, 0]"]
|
||||
38["Segment<br>[1218, 1269, 0]"]
|
||||
39["Segment<br>[1275, 1333, 0]"]
|
||||
40["Segment<br>[1339, 1388, 0]"]
|
||||
41["Segment<br>[1394, 1434, 0]"]
|
||||
42["Segment<br>[1440, 1459, 0]"]
|
||||
43["Segment<br>[1465, 1518, 0]"]
|
||||
44["Segment<br>[1524, 1573, 0]"]
|
||||
45["Segment<br>[1579, 1649, 0]"]
|
||||
46["Segment<br>[1655, 1706, 0]"]
|
||||
47["Segment<br>[1712, 1782, 0]"]
|
||||
48["Segment<br>[1788, 1839, 0]"]
|
||||
49["Segment<br>[1845, 1901, 0]"]
|
||||
50["Segment<br>[1907, 1914, 0]"]
|
||||
108[Solid2d]
|
||||
end
|
||||
subgraph path18 [Path]
|
||||
18["Path<br>[2163, 2222, 0]"]
|
||||
51["Segment<br>[2163, 2222, 0]"]
|
||||
18["Path<br>[2181, 2240, 0]"]
|
||||
51["Segment<br>[2181, 2240, 0]"]
|
||||
106[Solid2d]
|
||||
end
|
||||
subgraph path19 [Path]
|
||||
19["Path<br>[2328, 2358, 0]"]
|
||||
52["Segment<br>[2364, 2383, 0]"]
|
||||
53["Segment<br>[2389, 2439, 0]"]
|
||||
54["Segment<br>[2445, 2501, 0]"]
|
||||
55["Segment<br>[2507, 2514, 0]"]
|
||||
19["Path<br>[2346, 2376, 0]"]
|
||||
52["Segment<br>[2382, 2401, 0]"]
|
||||
53["Segment<br>[2407, 2457, 0]"]
|
||||
54["Segment<br>[2463, 2519, 0]"]
|
||||
55["Segment<br>[2525, 2532, 0]"]
|
||||
97[Solid2d]
|
||||
end
|
||||
subgraph path20 [Path]
|
||||
20["Path<br>[2752, 2783, 0]"]
|
||||
56["Segment<br>[2789, 2834, 0]"]
|
||||
57["Segment<br>[2840, 2917, 0]"]
|
||||
58["Segment<br>[2923, 2962, 0]"]
|
||||
59["Segment<br>[2968, 3014, 0]"]
|
||||
60["Segment<br>[3020, 3045, 0]"]
|
||||
61["Segment<br>[3051, 3107, 0]"]
|
||||
62["Segment<br>[3113, 3120, 0]"]
|
||||
20["Path<br>[2770, 2801, 0]"]
|
||||
56["Segment<br>[2807, 2852, 0]"]
|
||||
57["Segment<br>[2858, 2935, 0]"]
|
||||
58["Segment<br>[2941, 2980, 0]"]
|
||||
59["Segment<br>[2986, 3032, 0]"]
|
||||
60["Segment<br>[3038, 3063, 0]"]
|
||||
61["Segment<br>[3069, 3125, 0]"]
|
||||
62["Segment<br>[3131, 3138, 0]"]
|
||||
105[Solid2d]
|
||||
end
|
||||
subgraph path21 [Path]
|
||||
21["Path<br>[3200, 3227, 0]"]
|
||||
63["Segment<br>[3233, 3253, 0]"]
|
||||
64["Segment<br>[3259, 3302, 0]"]
|
||||
65["Segment<br>[3308, 3326, 0]"]
|
||||
66["Segment<br>[3332, 3352, 0]"]
|
||||
67["Segment<br>[3358, 3378, 0]"]
|
||||
68["Segment<br>[3384, 3424, 0]"]
|
||||
69["Segment<br>[3430, 3486, 0]"]
|
||||
70["Segment<br>[3492, 3499, 0]"]
|
||||
21["Path<br>[3218, 3245, 0]"]
|
||||
63["Segment<br>[3251, 3271, 0]"]
|
||||
64["Segment<br>[3277, 3320, 0]"]
|
||||
65["Segment<br>[3326, 3344, 0]"]
|
||||
66["Segment<br>[3350, 3370, 0]"]
|
||||
67["Segment<br>[3376, 3396, 0]"]
|
||||
68["Segment<br>[3402, 3442, 0]"]
|
||||
69["Segment<br>[3448, 3504, 0]"]
|
||||
70["Segment<br>[3510, 3517, 0]"]
|
||||
104[Solid2d]
|
||||
end
|
||||
subgraph path22 [Path]
|
||||
22["Path<br>[3603, 3662, 0]"]
|
||||
71["Segment<br>[3603, 3662, 0]"]
|
||||
22["Path<br>[3621, 3680, 0]"]
|
||||
71["Segment<br>[3621, 3680, 0]"]
|
||||
109[Solid2d]
|
||||
end
|
||||
subgraph path23 [Path]
|
||||
23["Path<br>[3686, 3723, 0]"]
|
||||
72["Segment<br>[3686, 3723, 0]"]
|
||||
23["Path<br>[3704, 3741, 0]"]
|
||||
72["Segment<br>[3704, 3741, 0]"]
|
||||
103[Solid2d]
|
||||
end
|
||||
subgraph path24 [Path]
|
||||
24["Path<br>[3867, 3905, 0]"]
|
||||
73["Segment<br>[3867, 3905, 0]"]
|
||||
24["Path<br>[3885, 3923, 0]"]
|
||||
73["Segment<br>[3885, 3923, 0]"]
|
||||
101[Solid2d]
|
||||
end
|
||||
subgraph path25 [Path]
|
||||
25["Path<br>[4183, 4221, 0]"]
|
||||
74["Segment<br>[4183, 4221, 0]"]
|
||||
25["Path<br>[4201, 4239, 0]"]
|
||||
74["Segment<br>[4201, 4239, 0]"]
|
||||
98[Solid2d]
|
||||
end
|
||||
subgraph path26 [Path]
|
||||
26["Path<br>[4473, 4525, 0]"]
|
||||
75["Segment<br>[4473, 4525, 0]"]
|
||||
26["Path<br>[4491, 4543, 0]"]
|
||||
75["Segment<br>[4491, 4543, 0]"]
|
||||
100[Solid2d]
|
||||
end
|
||||
subgraph path27 [Path]
|
||||
27["Path<br>[4770, 4814, 0]"]
|
||||
76["Segment<br>[4820, 4860, 0]"]
|
||||
77["Segment<br>[4866, 4885, 0]"]
|
||||
78["Segment<br>[4891, 4910, 0]"]
|
||||
79["Segment<br>[4916, 4935, 0]"]
|
||||
80["Segment<br>[4941, 4966, 0]"]
|
||||
81["Segment<br>[4972, 5080, 0]"]
|
||||
82["Segment<br>[5086, 5142, 0]"]
|
||||
83["Segment<br>[5148, 5155, 0]"]
|
||||
27["Path<br>[4788, 4832, 0]"]
|
||||
76["Segment<br>[4838, 4878, 0]"]
|
||||
77["Segment<br>[4884, 4903, 0]"]
|
||||
78["Segment<br>[4909, 4928, 0]"]
|
||||
79["Segment<br>[4934, 4953, 0]"]
|
||||
80["Segment<br>[4959, 4984, 0]"]
|
||||
81["Segment<br>[4990, 5098, 0]"]
|
||||
82["Segment<br>[5104, 5160, 0]"]
|
||||
83["Segment<br>[5166, 5173, 0]"]
|
||||
107[Solid2d]
|
||||
end
|
||||
subgraph path28 [Path]
|
||||
28["Path<br>[5285, 5314, 0]"]
|
||||
84["Segment<br>[5320, 5341, 0]"]
|
||||
85["Segment<br>[5347, 5387, 0]"]
|
||||
86["Segment<br>[5393, 5433, 0]"]
|
||||
87["Segment<br>[5439, 5480, 0]"]
|
||||
88["Segment<br>[5486, 5508, 0]"]
|
||||
89["Segment<br>[5514, 5535, 0]"]
|
||||
90["Segment<br>[5541, 5566, 0]"]
|
||||
91["Segment<br>[5572, 5612, 0]"]
|
||||
92["Segment<br>[5618, 5659, 0]"]
|
||||
93["Segment<br>[5665, 5706, 0]"]
|
||||
94["Segment<br>[5712, 5733, 0]"]
|
||||
95["Segment<br>[5739, 5795, 0]"]
|
||||
96["Segment<br>[5801, 5808, 0]"]
|
||||
28["Path<br>[5303, 5332, 0]"]
|
||||
84["Segment<br>[5338, 5359, 0]"]
|
||||
85["Segment<br>[5365, 5405, 0]"]
|
||||
86["Segment<br>[5411, 5451, 0]"]
|
||||
87["Segment<br>[5457, 5498, 0]"]
|
||||
88["Segment<br>[5504, 5526, 0]"]
|
||||
89["Segment<br>[5532, 5553, 0]"]
|
||||
90["Segment<br>[5559, 5584, 0]"]
|
||||
91["Segment<br>[5590, 5630, 0]"]
|
||||
92["Segment<br>[5636, 5677, 0]"]
|
||||
93["Segment<br>[5683, 5724, 0]"]
|
||||
94["Segment<br>[5730, 5751, 0]"]
|
||||
95["Segment<br>[5757, 5813, 0]"]
|
||||
96["Segment<br>[5819, 5826, 0]"]
|
||||
99[Solid2d]
|
||||
end
|
||||
1["Plane<br>[242, 259, 0]"]
|
||||
2["Plane<br>[942, 965, 0]"]
|
||||
3["Plane<br>[2129, 2156, 0]"]
|
||||
4["Plane<br>[2729, 2746, 0]"]
|
||||
5["Plane<br>[3177, 3194, 0]"]
|
||||
6["Plane<br>[3566, 3596, 0]"]
|
||||
7["Plane<br>[4450, 4467, 0]"]
|
||||
8["Plane<br>[4747, 4764, 0]"]
|
||||
9["Plane<br>[5233, 5278, 0]"]
|
||||
10["StartSketchOnPlane<br>[5219, 5279, 0]"]
|
||||
11["StartSketchOnPlane<br>[2115, 2157, 0]"]
|
||||
12["StartSketchOnPlane<br>[3552, 3597, 0]"]
|
||||
13["StartSketchOnFace<br>[2285, 2322, 0]"]
|
||||
14["StartSketchOnFace<br>[4140, 4177, 0]"]
|
||||
15["StartSketchOnFace<br>[3824, 3861, 0]"]
|
||||
110["Sweep Revolve<br>[687, 717, 0]"]
|
||||
111["Sweep Extrusion<br>[1902, 1924, 0]"]
|
||||
112["Sweep Extrusion<br>[2237, 2271, 0]"]
|
||||
113["Sweep Extrusion<br>[2663, 2698, 0]"]
|
||||
114["Sweep Extrusion<br>[2663, 2698, 0]"]
|
||||
115["Sweep Extrusion<br>[2663, 2698, 0]"]
|
||||
116["Sweep Revolve<br>[3126, 3143, 0]"]
|
||||
117["Sweep Revolve<br>[3505, 3522, 0]"]
|
||||
118["Sweep Extrusion<br>[3739, 3773, 0]"]
|
||||
119["Sweep Extrusion<br>[4054, 4089, 0]"]
|
||||
120["Sweep Extrusion<br>[4054, 4089, 0]"]
|
||||
121["Sweep Extrusion<br>[4054, 4089, 0]"]
|
||||
122["Sweep Extrusion<br>[4054, 4089, 0]"]
|
||||
123["Sweep Extrusion<br>[4054, 4089, 0]"]
|
||||
124["Sweep Extrusion<br>[4054, 4089, 0]"]
|
||||
125["Sweep Extrusion<br>[4054, 4089, 0]"]
|
||||
126["Sweep Extrusion<br>[4054, 4089, 0]"]
|
||||
127["Sweep Extrusion<br>[4370, 4405, 0]"]
|
||||
128["Sweep Extrusion<br>[4370, 4405, 0]"]
|
||||
129["Sweep Extrusion<br>[4370, 4405, 0]"]
|
||||
130["Sweep Extrusion<br>[4370, 4405, 0]"]
|
||||
131["Sweep Extrusion<br>[4621, 4662, 0]"]
|
||||
132["Sweep Revolve<br>[5161, 5178, 0]"]
|
||||
133["Sweep Extrusion<br>[5822, 5867, 0]"]
|
||||
1["Plane<br>[260, 277, 0]"]
|
||||
2["Plane<br>[960, 983, 0]"]
|
||||
3["Plane<br>[2147, 2174, 0]"]
|
||||
4["Plane<br>[2747, 2764, 0]"]
|
||||
5["Plane<br>[3195, 3212, 0]"]
|
||||
6["Plane<br>[3584, 3614, 0]"]
|
||||
7["Plane<br>[4468, 4485, 0]"]
|
||||
8["Plane<br>[4765, 4782, 0]"]
|
||||
9["Plane<br>[5251, 5296, 0]"]
|
||||
10["StartSketchOnPlane<br>[5237, 5297, 0]"]
|
||||
11["StartSketchOnPlane<br>[2133, 2175, 0]"]
|
||||
12["StartSketchOnPlane<br>[3570, 3615, 0]"]
|
||||
13["StartSketchOnFace<br>[2303, 2340, 0]"]
|
||||
14["StartSketchOnFace<br>[4158, 4195, 0]"]
|
||||
15["StartSketchOnFace<br>[3842, 3879, 0]"]
|
||||
110["Sweep Revolve<br>[705, 735, 0]"]
|
||||
111["Sweep Extrusion<br>[1920, 1942, 0]"]
|
||||
112["Sweep Extrusion<br>[2255, 2289, 0]"]
|
||||
113["Sweep Extrusion<br>[2681, 2716, 0]"]
|
||||
114["Sweep Extrusion<br>[2681, 2716, 0]"]
|
||||
115["Sweep Extrusion<br>[2681, 2716, 0]"]
|
||||
116["Sweep Revolve<br>[3144, 3161, 0]"]
|
||||
117["Sweep Revolve<br>[3523, 3540, 0]"]
|
||||
118["Sweep Extrusion<br>[3757, 3791, 0]"]
|
||||
119["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||
120["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||
121["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||
122["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||
123["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||
124["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||
125["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||
126["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||
127["Sweep Extrusion<br>[4388, 4423, 0]"]
|
||||
128["Sweep Extrusion<br>[4388, 4423, 0]"]
|
||||
129["Sweep Extrusion<br>[4388, 4423, 0]"]
|
||||
130["Sweep Extrusion<br>[4388, 4423, 0]"]
|
||||
131["Sweep Extrusion<br>[4639, 4680, 0]"]
|
||||
132["Sweep Revolve<br>[5179, 5196, 0]"]
|
||||
133["Sweep Extrusion<br>[5840, 5885, 0]"]
|
||||
134[Wall]
|
||||
135[Wall]
|
||||
136[Wall]
|
||||
|
||||
@ -9388,6 +9388,31 @@ description: Result of parsing french-press.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -4399,9 +4399,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 357,
|
||||
"end": 378,
|
||||
"start": 357,
|
||||
"commentStart": 375,
|
||||
"end": 396,
|
||||
"start": 375,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA001"
|
||||
},
|
||||
@ -4412,9 +4412,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 461,
|
||||
"end": 482,
|
||||
"start": 461,
|
||||
"commentStart": 479,
|
||||
"end": 500,
|
||||
"start": 479,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB001"
|
||||
},
|
||||
@ -4425,9 +4425,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 584,
|
||||
"end": 605,
|
||||
"start": 584,
|
||||
"commentStart": 602,
|
||||
"end": 623,
|
||||
"start": 602,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC001"
|
||||
},
|
||||
@ -4455,9 +4455,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
5.7
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 357,
|
||||
"end": 378,
|
||||
"start": 357,
|
||||
"commentStart": 375,
|
||||
"end": 396,
|
||||
"start": 375,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA001"
|
||||
},
|
||||
@ -4480,9 +4480,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
5.7
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 461,
|
||||
"end": 482,
|
||||
"start": 461,
|
||||
"commentStart": 479,
|
||||
"end": 500,
|
||||
"start": 479,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB001"
|
||||
},
|
||||
@ -4505,9 +4505,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
6.45
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 584,
|
||||
"end": 605,
|
||||
"start": 584,
|
||||
"commentStart": 602,
|
||||
"end": 623,
|
||||
"start": 602,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC001"
|
||||
},
|
||||
@ -4658,9 +4658,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1073,
|
||||
"end": 1079,
|
||||
"start": 1073,
|
||||
"commentStart": 1091,
|
||||
"end": 1097,
|
||||
"start": 1091,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -4678,9 +4678,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1187,
|
||||
"end": 1193,
|
||||
"start": 1187,
|
||||
"commentStart": 1205,
|
||||
"end": 1211,
|
||||
"start": 1205,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -4698,9 +4698,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1308,
|
||||
"end": 1314,
|
||||
"start": 1308,
|
||||
"commentStart": 1326,
|
||||
"end": 1332,
|
||||
"start": 1326,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -4718,9 +4718,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1407,
|
||||
"end": 1415,
|
||||
"start": 1407,
|
||||
"commentStart": 1425,
|
||||
"end": 1433,
|
||||
"start": 1425,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edgeLen"
|
||||
},
|
||||
@ -4738,9 +4738,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1493,
|
||||
"end": 1499,
|
||||
"start": 1493,
|
||||
"commentStart": 1511,
|
||||
"end": 1517,
|
||||
"start": 1511,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -4758,9 +4758,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1624,
|
||||
"end": 1630,
|
||||
"start": 1624,
|
||||
"commentStart": 1642,
|
||||
"end": 1648,
|
||||
"start": 1642,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge5"
|
||||
},
|
||||
@ -4778,9 +4778,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1757,
|
||||
"end": 1763,
|
||||
"start": 1757,
|
||||
"commentStart": 1775,
|
||||
"end": 1781,
|
||||
"start": 1775,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge6"
|
||||
},
|
||||
@ -4834,9 +4834,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
5.7
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1073,
|
||||
"end": 1079,
|
||||
"start": 1073,
|
||||
"commentStart": 1091,
|
||||
"end": 1097,
|
||||
"start": 1091,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -4884,9 +4884,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
0.3732
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1187,
|
||||
"end": 1193,
|
||||
"start": 1187,
|
||||
"commentStart": 1205,
|
||||
"end": 1211,
|
||||
"start": 1205,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -4934,9 +4934,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.966
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1308,
|
||||
"end": 1314,
|
||||
"start": 1308,
|
||||
"commentStart": 1326,
|
||||
"end": 1332,
|
||||
"start": 1326,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -4984,9 +4984,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.133
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1407,
|
||||
"end": 1415,
|
||||
"start": 1407,
|
||||
"commentStart": 1425,
|
||||
"end": 1433,
|
||||
"start": 1425,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edgeLen"
|
||||
},
|
||||
@ -5028,9 +5028,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.033
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1493,
|
||||
"end": 1499,
|
||||
"start": 1493,
|
||||
"commentStart": 1511,
|
||||
"end": 1517,
|
||||
"start": 1511,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -5078,9 +5078,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.1134
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1624,
|
||||
"end": 1630,
|
||||
"start": 1624,
|
||||
"commentStart": 1642,
|
||||
"end": 1648,
|
||||
"start": 1642,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge5"
|
||||
},
|
||||
@ -5128,9 +5128,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.1789
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1757,
|
||||
"end": 1763,
|
||||
"start": 1757,
|
||||
"commentStart": 1775,
|
||||
"end": 1781,
|
||||
"start": 1775,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge6"
|
||||
},
|
||||
@ -5319,9 +5319,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1073,
|
||||
"end": 1079,
|
||||
"start": 1073,
|
||||
"commentStart": 1091,
|
||||
"end": 1097,
|
||||
"start": 1091,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -5339,9 +5339,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1187,
|
||||
"end": 1193,
|
||||
"start": 1187,
|
||||
"commentStart": 1205,
|
||||
"end": 1211,
|
||||
"start": 1205,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -5359,9 +5359,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1308,
|
||||
"end": 1314,
|
||||
"start": 1308,
|
||||
"commentStart": 1326,
|
||||
"end": 1332,
|
||||
"start": 1326,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -5379,9 +5379,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1407,
|
||||
"end": 1415,
|
||||
"start": 1407,
|
||||
"commentStart": 1425,
|
||||
"end": 1433,
|
||||
"start": 1425,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edgeLen"
|
||||
},
|
||||
@ -5399,9 +5399,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1493,
|
||||
"end": 1499,
|
||||
"start": 1493,
|
||||
"commentStart": 1511,
|
||||
"end": 1517,
|
||||
"start": 1511,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -5419,9 +5419,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1624,
|
||||
"end": 1630,
|
||||
"start": 1624,
|
||||
"commentStart": 1642,
|
||||
"end": 1648,
|
||||
"start": 1642,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge5"
|
||||
},
|
||||
@ -5439,9 +5439,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1757,
|
||||
"end": 1763,
|
||||
"start": 1757,
|
||||
"commentStart": 1775,
|
||||
"end": 1781,
|
||||
"start": 1775,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge6"
|
||||
},
|
||||
@ -5495,9 +5495,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
5.7
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1073,
|
||||
"end": 1079,
|
||||
"start": 1073,
|
||||
"commentStart": 1091,
|
||||
"end": 1097,
|
||||
"start": 1091,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -5545,9 +5545,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
0.3732
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1187,
|
||||
"end": 1193,
|
||||
"start": 1187,
|
||||
"commentStart": 1205,
|
||||
"end": 1211,
|
||||
"start": 1205,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -5595,9 +5595,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.966
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1308,
|
||||
"end": 1314,
|
||||
"start": 1308,
|
||||
"commentStart": 1326,
|
||||
"end": 1332,
|
||||
"start": 1326,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -5645,9 +5645,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.133
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1407,
|
||||
"end": 1415,
|
||||
"start": 1407,
|
||||
"commentStart": 1425,
|
||||
"end": 1433,
|
||||
"start": 1425,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edgeLen"
|
||||
},
|
||||
@ -5689,9 +5689,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.033
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1493,
|
||||
"end": 1499,
|
||||
"start": 1493,
|
||||
"commentStart": 1511,
|
||||
"end": 1517,
|
||||
"start": 1511,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -5739,9 +5739,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.1134
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1624,
|
||||
"end": 1630,
|
||||
"start": 1624,
|
||||
"commentStart": 1642,
|
||||
"end": 1648,
|
||||
"start": 1642,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge5"
|
||||
},
|
||||
@ -5789,9 +5789,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.1789
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1757,
|
||||
"end": 1763,
|
||||
"start": 1757,
|
||||
"commentStart": 1775,
|
||||
"end": 1781,
|
||||
"start": 1775,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge6"
|
||||
},
|
||||
@ -5980,9 +5980,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1073,
|
||||
"end": 1079,
|
||||
"start": 1073,
|
||||
"commentStart": 1091,
|
||||
"end": 1097,
|
||||
"start": 1091,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -6000,9 +6000,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1187,
|
||||
"end": 1193,
|
||||
"start": 1187,
|
||||
"commentStart": 1205,
|
||||
"end": 1211,
|
||||
"start": 1205,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -6020,9 +6020,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1308,
|
||||
"end": 1314,
|
||||
"start": 1308,
|
||||
"commentStart": 1326,
|
||||
"end": 1332,
|
||||
"start": 1326,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -6040,9 +6040,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1407,
|
||||
"end": 1415,
|
||||
"start": 1407,
|
||||
"commentStart": 1425,
|
||||
"end": 1433,
|
||||
"start": 1425,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edgeLen"
|
||||
},
|
||||
@ -6060,9 +6060,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1493,
|
||||
"end": 1499,
|
||||
"start": 1493,
|
||||
"commentStart": 1511,
|
||||
"end": 1517,
|
||||
"start": 1511,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -6080,9 +6080,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1624,
|
||||
"end": 1630,
|
||||
"start": 1624,
|
||||
"commentStart": 1642,
|
||||
"end": 1648,
|
||||
"start": 1642,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge5"
|
||||
},
|
||||
@ -6100,9 +6100,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1757,
|
||||
"end": 1763,
|
||||
"start": 1757,
|
||||
"commentStart": 1775,
|
||||
"end": 1781,
|
||||
"start": 1775,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge6"
|
||||
},
|
||||
@ -6156,9 +6156,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
5.7
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1073,
|
||||
"end": 1079,
|
||||
"start": 1073,
|
||||
"commentStart": 1091,
|
||||
"end": 1097,
|
||||
"start": 1091,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -6206,9 +6206,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
0.3732
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1187,
|
||||
"end": 1193,
|
||||
"start": 1187,
|
||||
"commentStart": 1205,
|
||||
"end": 1211,
|
||||
"start": 1205,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -6256,9 +6256,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.966
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1308,
|
||||
"end": 1314,
|
||||
"start": 1308,
|
||||
"commentStart": 1326,
|
||||
"end": 1332,
|
||||
"start": 1326,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -6306,9 +6306,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.133
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1407,
|
||||
"end": 1415,
|
||||
"start": 1407,
|
||||
"commentStart": 1425,
|
||||
"end": 1433,
|
||||
"start": 1425,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edgeLen"
|
||||
},
|
||||
@ -6350,9 +6350,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.033
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1493,
|
||||
"end": 1499,
|
||||
"start": 1493,
|
||||
"commentStart": 1511,
|
||||
"end": 1517,
|
||||
"start": 1511,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -6400,9 +6400,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.1134
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1624,
|
||||
"end": 1630,
|
||||
"start": 1624,
|
||||
"commentStart": 1642,
|
||||
"end": 1648,
|
||||
"start": 1642,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge5"
|
||||
},
|
||||
@ -6450,9 +6450,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.1789
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1757,
|
||||
"end": 1763,
|
||||
"start": 1757,
|
||||
"commentStart": 1775,
|
||||
"end": 1781,
|
||||
"start": 1775,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge6"
|
||||
},
|
||||
@ -6641,9 +6641,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1073,
|
||||
"end": 1079,
|
||||
"start": 1073,
|
||||
"commentStart": 1091,
|
||||
"end": 1097,
|
||||
"start": 1091,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -6661,9 +6661,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1187,
|
||||
"end": 1193,
|
||||
"start": 1187,
|
||||
"commentStart": 1205,
|
||||
"end": 1211,
|
||||
"start": 1205,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -6681,9 +6681,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1308,
|
||||
"end": 1314,
|
||||
"start": 1308,
|
||||
"commentStart": 1326,
|
||||
"end": 1332,
|
||||
"start": 1326,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -6701,9 +6701,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1407,
|
||||
"end": 1415,
|
||||
"start": 1407,
|
||||
"commentStart": 1425,
|
||||
"end": 1433,
|
||||
"start": 1425,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edgeLen"
|
||||
},
|
||||
@ -6721,9 +6721,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1493,
|
||||
"end": 1499,
|
||||
"start": 1493,
|
||||
"commentStart": 1511,
|
||||
"end": 1517,
|
||||
"start": 1511,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -6741,9 +6741,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1624,
|
||||
"end": 1630,
|
||||
"start": 1624,
|
||||
"commentStart": 1642,
|
||||
"end": 1648,
|
||||
"start": 1642,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge5"
|
||||
},
|
||||
@ -6761,9 +6761,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1757,
|
||||
"end": 1763,
|
||||
"start": 1757,
|
||||
"commentStart": 1775,
|
||||
"end": 1781,
|
||||
"start": 1775,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge6"
|
||||
},
|
||||
@ -6817,9 +6817,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
5.7
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1073,
|
||||
"end": 1079,
|
||||
"start": 1073,
|
||||
"commentStart": 1091,
|
||||
"end": 1097,
|
||||
"start": 1091,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -6867,9 +6867,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
0.3732
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1187,
|
||||
"end": 1193,
|
||||
"start": 1187,
|
||||
"commentStart": 1205,
|
||||
"end": 1211,
|
||||
"start": 1205,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -6917,9 +6917,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.966
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1308,
|
||||
"end": 1314,
|
||||
"start": 1308,
|
||||
"commentStart": 1326,
|
||||
"end": 1332,
|
||||
"start": 1326,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -6967,9 +6967,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.133
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1407,
|
||||
"end": 1415,
|
||||
"start": 1407,
|
||||
"commentStart": 1425,
|
||||
"end": 1433,
|
||||
"start": 1425,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edgeLen"
|
||||
},
|
||||
@ -7011,9 +7011,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.033
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1493,
|
||||
"end": 1499,
|
||||
"start": 1493,
|
||||
"commentStart": 1511,
|
||||
"end": 1517,
|
||||
"start": 1511,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -7061,9 +7061,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.1134
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1624,
|
||||
"end": 1630,
|
||||
"start": 1624,
|
||||
"commentStart": 1642,
|
||||
"end": 1648,
|
||||
"start": 1642,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge5"
|
||||
},
|
||||
@ -7111,9 +7111,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
-0.1789
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1757,
|
||||
"end": 1763,
|
||||
"start": 1757,
|
||||
"commentStart": 1775,
|
||||
"end": 1781,
|
||||
"start": 1775,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge6"
|
||||
},
|
||||
@ -8128,9 +8128,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2911,
|
||||
"end": 2916,
|
||||
"start": 2911,
|
||||
"commentStart": 2929,
|
||||
"end": 2934,
|
||||
"start": 2929,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg1"
|
||||
},
|
||||
@ -8198,9 +8198,9 @@ description: Variables in memory after executing french-press.kcl
|
||||
1.11
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2911,
|
||||
"end": 2916,
|
||||
"start": 2911,
|
||||
"commentStart": 2929,
|
||||
"end": 2934,
|
||||
"start": 2929,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg1"
|
||||
},
|
||||
|
||||
@ -1,49 +1,49 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path5 [Path]
|
||||
5["Path<br>[585, 620, 0]"]
|
||||
9["Segment<br>[626, 649, 0]"]
|
||||
10["Segment<br>[655, 681, 0]"]
|
||||
11["Segment<br>[687, 711, 0]"]
|
||||
12["Segment<br>[717, 724, 0]"]
|
||||
5["Path<br>[603, 638, 0]"]
|
||||
9["Segment<br>[644, 667, 0]"]
|
||||
10["Segment<br>[673, 699, 0]"]
|
||||
11["Segment<br>[705, 729, 0]"]
|
||||
12["Segment<br>[735, 742, 0]"]
|
||||
32[Solid2d]
|
||||
end
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[859, 913, 0]"]
|
||||
13["Segment<br>[921, 962, 0]"]
|
||||
14["Segment<br>[970, 1002, 0]"]
|
||||
15["Segment<br>[1010, 1051, 0]"]
|
||||
16["Segment<br>[1059, 1084, 0]"]
|
||||
17["Segment<br>[1092, 1134, 0]"]
|
||||
18["Segment<br>[1142, 1175, 0]"]
|
||||
19["Segment<br>[1183, 1225, 0]"]
|
||||
20["Segment<br>[1233, 1240, 0]"]
|
||||
6["Path<br>[877, 931, 0]"]
|
||||
13["Segment<br>[939, 980, 0]"]
|
||||
14["Segment<br>[988, 1020, 0]"]
|
||||
15["Segment<br>[1028, 1069, 0]"]
|
||||
16["Segment<br>[1077, 1102, 0]"]
|
||||
17["Segment<br>[1110, 1152, 0]"]
|
||||
18["Segment<br>[1160, 1193, 0]"]
|
||||
19["Segment<br>[1201, 1243, 0]"]
|
||||
20["Segment<br>[1251, 1258, 0]"]
|
||||
31[Solid2d]
|
||||
end
|
||||
subgraph path7 [Path]
|
||||
7["Path<br>[1553, 1596, 0]"]
|
||||
21["Segment<br>[1602, 1635, 0]"]
|
||||
22["Segment<br>[1641, 1683, 0]"]
|
||||
23["Segment<br>[1689, 1733, 0]"]
|
||||
24["Segment<br>[1739, 1746, 0]"]
|
||||
7["Path<br>[1571, 1614, 0]"]
|
||||
21["Segment<br>[1620, 1653, 0]"]
|
||||
22["Segment<br>[1659, 1701, 0]"]
|
||||
23["Segment<br>[1707, 1751, 0]"]
|
||||
24["Segment<br>[1757, 1764, 0]"]
|
||||
29[Solid2d]
|
||||
end
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[1881, 1923, 0]"]
|
||||
25["Segment<br>[1929, 1963, 0]"]
|
||||
26["Segment<br>[1969, 2012, 0]"]
|
||||
27["Segment<br>[2018, 2061, 0]"]
|
||||
28["Segment<br>[2067, 2074, 0]"]
|
||||
8["Path<br>[1899, 1941, 0]"]
|
||||
25["Segment<br>[1947, 1981, 0]"]
|
||||
26["Segment<br>[1987, 2030, 0]"]
|
||||
27["Segment<br>[2036, 2079, 0]"]
|
||||
28["Segment<br>[2085, 2092, 0]"]
|
||||
30[Solid2d]
|
||||
end
|
||||
1["Plane<br>[562, 579, 0]"]
|
||||
2["Plane<br>[834, 851, 0]"]
|
||||
3["Plane<br>[1530, 1547, 0]"]
|
||||
4["Plane<br>[1858, 1875, 0]"]
|
||||
33["Sweep Extrusion<br>[730, 753, 0]"]
|
||||
34["Sweep Extrusion<br>[1248, 1271, 0]"]
|
||||
35["Sweep Extrusion<br>[1752, 1775, 0]"]
|
||||
36["Sweep Extrusion<br>[2080, 2103, 0]"]
|
||||
1["Plane<br>[580, 597, 0]"]
|
||||
2["Plane<br>[852, 869, 0]"]
|
||||
3["Plane<br>[1548, 1565, 0]"]
|
||||
4["Plane<br>[1876, 1893, 0]"]
|
||||
33["Sweep Extrusion<br>[748, 771, 0]"]
|
||||
34["Sweep Extrusion<br>[1266, 1289, 0]"]
|
||||
35["Sweep Extrusion<br>[1770, 1793, 0]"]
|
||||
36["Sweep Extrusion<br>[2098, 2121, 0]"]
|
||||
37[Wall]
|
||||
38[Wall]
|
||||
39[Wall]
|
||||
|
||||
@ -2751,6 +2751,31 @@ description: Result of parsing gear-rack.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,234 +1,234 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path4 [Path]
|
||||
4["Path<br>[1413, 1463, 0]"]
|
||||
7["Segment<br>[1413, 1463, 0]"]
|
||||
4["Path<br>[1431, 1481, 0]"]
|
||||
7["Segment<br>[1431, 1481, 0]"]
|
||||
219[Solid2d]
|
||||
end
|
||||
subgraph path5 [Path]
|
||||
5["Path<br>[1932, 1969, 0]"]
|
||||
8["Segment<br>[1628, 1666, 0]"]
|
||||
9["Segment<br>[1628, 1666, 0]"]
|
||||
10["Segment<br>[1628, 1666, 0]"]
|
||||
11["Segment<br>[1628, 1666, 0]"]
|
||||
12["Segment<br>[1628, 1666, 0]"]
|
||||
13["Segment<br>[1628, 1666, 0]"]
|
||||
14["Segment<br>[1628, 1666, 0]"]
|
||||
15["Segment<br>[1628, 1666, 0]"]
|
||||
16["Segment<br>[1628, 1666, 0]"]
|
||||
17["Segment<br>[1628, 1666, 0]"]
|
||||
18["Segment<br>[1628, 1666, 0]"]
|
||||
19["Segment<br>[1628, 1666, 0]"]
|
||||
20["Segment<br>[1628, 1666, 0]"]
|
||||
21["Segment<br>[1628, 1666, 0]"]
|
||||
22["Segment<br>[1628, 1666, 0]"]
|
||||
23["Segment<br>[1628, 1666, 0]"]
|
||||
24["Segment<br>[1628, 1666, 0]"]
|
||||
25["Segment<br>[1628, 1666, 0]"]
|
||||
26["Segment<br>[1628, 1666, 0]"]
|
||||
27["Segment<br>[1628, 1666, 0]"]
|
||||
28["Segment<br>[1628, 1666, 0]"]
|
||||
29["Segment<br>[1628, 1666, 0]"]
|
||||
30["Segment<br>[1628, 1666, 0]"]
|
||||
31["Segment<br>[1628, 1666, 0]"]
|
||||
32["Segment<br>[1628, 1666, 0]"]
|
||||
33["Segment<br>[1628, 1666, 0]"]
|
||||
34["Segment<br>[1628, 1666, 0]"]
|
||||
35["Segment<br>[1628, 1666, 0]"]
|
||||
36["Segment<br>[1628, 1666, 0]"]
|
||||
37["Segment<br>[1628, 1666, 0]"]
|
||||
38["Segment<br>[1628, 1666, 0]"]
|
||||
39["Segment<br>[1628, 1666, 0]"]
|
||||
40["Segment<br>[1628, 1666, 0]"]
|
||||
41["Segment<br>[1628, 1666, 0]"]
|
||||
42["Segment<br>[1628, 1666, 0]"]
|
||||
43["Segment<br>[1628, 1666, 0]"]
|
||||
44["Segment<br>[1628, 1666, 0]"]
|
||||
45["Segment<br>[1628, 1666, 0]"]
|
||||
46["Segment<br>[1628, 1666, 0]"]
|
||||
47["Segment<br>[1628, 1666, 0]"]
|
||||
48["Segment<br>[1628, 1666, 0]"]
|
||||
49["Segment<br>[1628, 1666, 0]"]
|
||||
50["Segment<br>[1628, 1666, 0]"]
|
||||
51["Segment<br>[1628, 1666, 0]"]
|
||||
52["Segment<br>[1628, 1666, 0]"]
|
||||
53["Segment<br>[1628, 1666, 0]"]
|
||||
54["Segment<br>[1628, 1666, 0]"]
|
||||
55["Segment<br>[1628, 1666, 0]"]
|
||||
56["Segment<br>[1628, 1666, 0]"]
|
||||
57["Segment<br>[1628, 1666, 0]"]
|
||||
58["Segment<br>[1628, 1666, 0]"]
|
||||
59["Segment<br>[1628, 1666, 0]"]
|
||||
60["Segment<br>[1628, 1666, 0]"]
|
||||
61["Segment<br>[1628, 1666, 0]"]
|
||||
62["Segment<br>[1628, 1666, 0]"]
|
||||
63["Segment<br>[1628, 1666, 0]"]
|
||||
64["Segment<br>[1628, 1666, 0]"]
|
||||
65["Segment<br>[1628, 1666, 0]"]
|
||||
66["Segment<br>[1628, 1666, 0]"]
|
||||
67["Segment<br>[1628, 1666, 0]"]
|
||||
68["Segment<br>[1628, 1666, 0]"]
|
||||
69["Segment<br>[1628, 1666, 0]"]
|
||||
70["Segment<br>[1628, 1666, 0]"]
|
||||
71["Segment<br>[1628, 1666, 0]"]
|
||||
72["Segment<br>[1628, 1666, 0]"]
|
||||
73["Segment<br>[1628, 1666, 0]"]
|
||||
74["Segment<br>[1628, 1666, 0]"]
|
||||
75["Segment<br>[1628, 1666, 0]"]
|
||||
76["Segment<br>[1628, 1666, 0]"]
|
||||
77["Segment<br>[1628, 1666, 0]"]
|
||||
78["Segment<br>[1628, 1666, 0]"]
|
||||
79["Segment<br>[1628, 1666, 0]"]
|
||||
80["Segment<br>[1628, 1666, 0]"]
|
||||
81["Segment<br>[1628, 1666, 0]"]
|
||||
82["Segment<br>[1628, 1666, 0]"]
|
||||
83["Segment<br>[1628, 1666, 0]"]
|
||||
84["Segment<br>[1628, 1666, 0]"]
|
||||
85["Segment<br>[1628, 1666, 0]"]
|
||||
86["Segment<br>[1628, 1666, 0]"]
|
||||
87["Segment<br>[1628, 1666, 0]"]
|
||||
88["Segment<br>[1628, 1666, 0]"]
|
||||
89["Segment<br>[1628, 1666, 0]"]
|
||||
90["Segment<br>[1628, 1666, 0]"]
|
||||
91["Segment<br>[1628, 1666, 0]"]
|
||||
92["Segment<br>[1628, 1666, 0]"]
|
||||
93["Segment<br>[1628, 1666, 0]"]
|
||||
94["Segment<br>[1628, 1666, 0]"]
|
||||
95["Segment<br>[1628, 1666, 0]"]
|
||||
96["Segment<br>[1628, 1666, 0]"]
|
||||
97["Segment<br>[1628, 1666, 0]"]
|
||||
98["Segment<br>[1628, 1666, 0]"]
|
||||
99["Segment<br>[1628, 1666, 0]"]
|
||||
100["Segment<br>[1628, 1666, 0]"]
|
||||
101["Segment<br>[1628, 1666, 0]"]
|
||||
102["Segment<br>[1628, 1666, 0]"]
|
||||
103["Segment<br>[1628, 1666, 0]"]
|
||||
104["Segment<br>[1628, 1666, 0]"]
|
||||
105["Segment<br>[1628, 1666, 0]"]
|
||||
106["Segment<br>[1628, 1666, 0]"]
|
||||
107["Segment<br>[1628, 1666, 0]"]
|
||||
108["Segment<br>[1628, 1666, 0]"]
|
||||
109["Segment<br>[1848, 1878, 0]"]
|
||||
110["Segment<br>[1848, 1878, 0]"]
|
||||
111["Segment<br>[1848, 1878, 0]"]
|
||||
112["Segment<br>[1848, 1878, 0]"]
|
||||
113["Segment<br>[1848, 1878, 0]"]
|
||||
114["Segment<br>[1848, 1878, 0]"]
|
||||
115["Segment<br>[1848, 1878, 0]"]
|
||||
116["Segment<br>[1848, 1878, 0]"]
|
||||
117["Segment<br>[1848, 1878, 0]"]
|
||||
118["Segment<br>[1848, 1878, 0]"]
|
||||
119["Segment<br>[1848, 1878, 0]"]
|
||||
120["Segment<br>[1848, 1878, 0]"]
|
||||
121["Segment<br>[1848, 1878, 0]"]
|
||||
122["Segment<br>[1848, 1878, 0]"]
|
||||
123["Segment<br>[1848, 1878, 0]"]
|
||||
124["Segment<br>[1848, 1878, 0]"]
|
||||
125["Segment<br>[1848, 1878, 0]"]
|
||||
126["Segment<br>[1848, 1878, 0]"]
|
||||
127["Segment<br>[1848, 1878, 0]"]
|
||||
128["Segment<br>[1848, 1878, 0]"]
|
||||
129["Segment<br>[1848, 1878, 0]"]
|
||||
130["Segment<br>[1848, 1878, 0]"]
|
||||
131["Segment<br>[1848, 1878, 0]"]
|
||||
132["Segment<br>[1848, 1878, 0]"]
|
||||
133["Segment<br>[1848, 1878, 0]"]
|
||||
134["Segment<br>[1848, 1878, 0]"]
|
||||
135["Segment<br>[1848, 1878, 0]"]
|
||||
136["Segment<br>[1848, 1878, 0]"]
|
||||
137["Segment<br>[1848, 1878, 0]"]
|
||||
138["Segment<br>[1848, 1878, 0]"]
|
||||
139["Segment<br>[1848, 1878, 0]"]
|
||||
140["Segment<br>[1848, 1878, 0]"]
|
||||
141["Segment<br>[1848, 1878, 0]"]
|
||||
142["Segment<br>[1848, 1878, 0]"]
|
||||
143["Segment<br>[1848, 1878, 0]"]
|
||||
144["Segment<br>[1848, 1878, 0]"]
|
||||
145["Segment<br>[1848, 1878, 0]"]
|
||||
146["Segment<br>[1848, 1878, 0]"]
|
||||
147["Segment<br>[1848, 1878, 0]"]
|
||||
148["Segment<br>[1848, 1878, 0]"]
|
||||
149["Segment<br>[1848, 1878, 0]"]
|
||||
150["Segment<br>[1848, 1878, 0]"]
|
||||
151["Segment<br>[1848, 1878, 0]"]
|
||||
152["Segment<br>[1848, 1878, 0]"]
|
||||
153["Segment<br>[1848, 1878, 0]"]
|
||||
154["Segment<br>[1848, 1878, 0]"]
|
||||
155["Segment<br>[1848, 1878, 0]"]
|
||||
156["Segment<br>[1848, 1878, 0]"]
|
||||
157["Segment<br>[1848, 1878, 0]"]
|
||||
158["Segment<br>[1848, 1878, 0]"]
|
||||
159["Segment<br>[1848, 1878, 0]"]
|
||||
160["Segment<br>[1848, 1878, 0]"]
|
||||
161["Segment<br>[1848, 1878, 0]"]
|
||||
162["Segment<br>[1848, 1878, 0]"]
|
||||
163["Segment<br>[1848, 1878, 0]"]
|
||||
164["Segment<br>[1848, 1878, 0]"]
|
||||
165["Segment<br>[1848, 1878, 0]"]
|
||||
166["Segment<br>[1848, 1878, 0]"]
|
||||
167["Segment<br>[1848, 1878, 0]"]
|
||||
168["Segment<br>[1848, 1878, 0]"]
|
||||
169["Segment<br>[1848, 1878, 0]"]
|
||||
170["Segment<br>[1848, 1878, 0]"]
|
||||
171["Segment<br>[1848, 1878, 0]"]
|
||||
172["Segment<br>[1848, 1878, 0]"]
|
||||
173["Segment<br>[1848, 1878, 0]"]
|
||||
174["Segment<br>[1848, 1878, 0]"]
|
||||
175["Segment<br>[1848, 1878, 0]"]
|
||||
176["Segment<br>[1848, 1878, 0]"]
|
||||
177["Segment<br>[1848, 1878, 0]"]
|
||||
178["Segment<br>[1848, 1878, 0]"]
|
||||
179["Segment<br>[1848, 1878, 0]"]
|
||||
180["Segment<br>[1848, 1878, 0]"]
|
||||
181["Segment<br>[1848, 1878, 0]"]
|
||||
182["Segment<br>[1848, 1878, 0]"]
|
||||
183["Segment<br>[1848, 1878, 0]"]
|
||||
184["Segment<br>[1848, 1878, 0]"]
|
||||
185["Segment<br>[1848, 1878, 0]"]
|
||||
186["Segment<br>[1848, 1878, 0]"]
|
||||
187["Segment<br>[1848, 1878, 0]"]
|
||||
188["Segment<br>[1848, 1878, 0]"]
|
||||
189["Segment<br>[1848, 1878, 0]"]
|
||||
190["Segment<br>[1848, 1878, 0]"]
|
||||
191["Segment<br>[1848, 1878, 0]"]
|
||||
192["Segment<br>[1848, 1878, 0]"]
|
||||
193["Segment<br>[1848, 1878, 0]"]
|
||||
194["Segment<br>[1848, 1878, 0]"]
|
||||
195["Segment<br>[1848, 1878, 0]"]
|
||||
196["Segment<br>[1848, 1878, 0]"]
|
||||
197["Segment<br>[1848, 1878, 0]"]
|
||||
198["Segment<br>[1848, 1878, 0]"]
|
||||
199["Segment<br>[1848, 1878, 0]"]
|
||||
200["Segment<br>[1848, 1878, 0]"]
|
||||
201["Segment<br>[1848, 1878, 0]"]
|
||||
202["Segment<br>[1848, 1878, 0]"]
|
||||
203["Segment<br>[1848, 1878, 0]"]
|
||||
204["Segment<br>[1848, 1878, 0]"]
|
||||
205["Segment<br>[1848, 1878, 0]"]
|
||||
206["Segment<br>[1848, 1878, 0]"]
|
||||
207["Segment<br>[1848, 1878, 0]"]
|
||||
208["Segment<br>[1848, 1878, 0]"]
|
||||
209["Segment<br>[1848, 1878, 0]"]
|
||||
210["Segment<br>[2035, 2104, 0]"]
|
||||
211["Segment<br>[2164, 2171, 0]"]
|
||||
5["Path<br>[1950, 1987, 0]"]
|
||||
8["Segment<br>[1646, 1684, 0]"]
|
||||
9["Segment<br>[1646, 1684, 0]"]
|
||||
10["Segment<br>[1646, 1684, 0]"]
|
||||
11["Segment<br>[1646, 1684, 0]"]
|
||||
12["Segment<br>[1646, 1684, 0]"]
|
||||
13["Segment<br>[1646, 1684, 0]"]
|
||||
14["Segment<br>[1646, 1684, 0]"]
|
||||
15["Segment<br>[1646, 1684, 0]"]
|
||||
16["Segment<br>[1646, 1684, 0]"]
|
||||
17["Segment<br>[1646, 1684, 0]"]
|
||||
18["Segment<br>[1646, 1684, 0]"]
|
||||
19["Segment<br>[1646, 1684, 0]"]
|
||||
20["Segment<br>[1646, 1684, 0]"]
|
||||
21["Segment<br>[1646, 1684, 0]"]
|
||||
22["Segment<br>[1646, 1684, 0]"]
|
||||
23["Segment<br>[1646, 1684, 0]"]
|
||||
24["Segment<br>[1646, 1684, 0]"]
|
||||
25["Segment<br>[1646, 1684, 0]"]
|
||||
26["Segment<br>[1646, 1684, 0]"]
|
||||
27["Segment<br>[1646, 1684, 0]"]
|
||||
28["Segment<br>[1646, 1684, 0]"]
|
||||
29["Segment<br>[1646, 1684, 0]"]
|
||||
30["Segment<br>[1646, 1684, 0]"]
|
||||
31["Segment<br>[1646, 1684, 0]"]
|
||||
32["Segment<br>[1646, 1684, 0]"]
|
||||
33["Segment<br>[1646, 1684, 0]"]
|
||||
34["Segment<br>[1646, 1684, 0]"]
|
||||
35["Segment<br>[1646, 1684, 0]"]
|
||||
36["Segment<br>[1646, 1684, 0]"]
|
||||
37["Segment<br>[1646, 1684, 0]"]
|
||||
38["Segment<br>[1646, 1684, 0]"]
|
||||
39["Segment<br>[1646, 1684, 0]"]
|
||||
40["Segment<br>[1646, 1684, 0]"]
|
||||
41["Segment<br>[1646, 1684, 0]"]
|
||||
42["Segment<br>[1646, 1684, 0]"]
|
||||
43["Segment<br>[1646, 1684, 0]"]
|
||||
44["Segment<br>[1646, 1684, 0]"]
|
||||
45["Segment<br>[1646, 1684, 0]"]
|
||||
46["Segment<br>[1646, 1684, 0]"]
|
||||
47["Segment<br>[1646, 1684, 0]"]
|
||||
48["Segment<br>[1646, 1684, 0]"]
|
||||
49["Segment<br>[1646, 1684, 0]"]
|
||||
50["Segment<br>[1646, 1684, 0]"]
|
||||
51["Segment<br>[1646, 1684, 0]"]
|
||||
52["Segment<br>[1646, 1684, 0]"]
|
||||
53["Segment<br>[1646, 1684, 0]"]
|
||||
54["Segment<br>[1646, 1684, 0]"]
|
||||
55["Segment<br>[1646, 1684, 0]"]
|
||||
56["Segment<br>[1646, 1684, 0]"]
|
||||
57["Segment<br>[1646, 1684, 0]"]
|
||||
58["Segment<br>[1646, 1684, 0]"]
|
||||
59["Segment<br>[1646, 1684, 0]"]
|
||||
60["Segment<br>[1646, 1684, 0]"]
|
||||
61["Segment<br>[1646, 1684, 0]"]
|
||||
62["Segment<br>[1646, 1684, 0]"]
|
||||
63["Segment<br>[1646, 1684, 0]"]
|
||||
64["Segment<br>[1646, 1684, 0]"]
|
||||
65["Segment<br>[1646, 1684, 0]"]
|
||||
66["Segment<br>[1646, 1684, 0]"]
|
||||
67["Segment<br>[1646, 1684, 0]"]
|
||||
68["Segment<br>[1646, 1684, 0]"]
|
||||
69["Segment<br>[1646, 1684, 0]"]
|
||||
70["Segment<br>[1646, 1684, 0]"]
|
||||
71["Segment<br>[1646, 1684, 0]"]
|
||||
72["Segment<br>[1646, 1684, 0]"]
|
||||
73["Segment<br>[1646, 1684, 0]"]
|
||||
74["Segment<br>[1646, 1684, 0]"]
|
||||
75["Segment<br>[1646, 1684, 0]"]
|
||||
76["Segment<br>[1646, 1684, 0]"]
|
||||
77["Segment<br>[1646, 1684, 0]"]
|
||||
78["Segment<br>[1646, 1684, 0]"]
|
||||
79["Segment<br>[1646, 1684, 0]"]
|
||||
80["Segment<br>[1646, 1684, 0]"]
|
||||
81["Segment<br>[1646, 1684, 0]"]
|
||||
82["Segment<br>[1646, 1684, 0]"]
|
||||
83["Segment<br>[1646, 1684, 0]"]
|
||||
84["Segment<br>[1646, 1684, 0]"]
|
||||
85["Segment<br>[1646, 1684, 0]"]
|
||||
86["Segment<br>[1646, 1684, 0]"]
|
||||
87["Segment<br>[1646, 1684, 0]"]
|
||||
88["Segment<br>[1646, 1684, 0]"]
|
||||
89["Segment<br>[1646, 1684, 0]"]
|
||||
90["Segment<br>[1646, 1684, 0]"]
|
||||
91["Segment<br>[1646, 1684, 0]"]
|
||||
92["Segment<br>[1646, 1684, 0]"]
|
||||
93["Segment<br>[1646, 1684, 0]"]
|
||||
94["Segment<br>[1646, 1684, 0]"]
|
||||
95["Segment<br>[1646, 1684, 0]"]
|
||||
96["Segment<br>[1646, 1684, 0]"]
|
||||
97["Segment<br>[1646, 1684, 0]"]
|
||||
98["Segment<br>[1646, 1684, 0]"]
|
||||
99["Segment<br>[1646, 1684, 0]"]
|
||||
100["Segment<br>[1646, 1684, 0]"]
|
||||
101["Segment<br>[1646, 1684, 0]"]
|
||||
102["Segment<br>[1646, 1684, 0]"]
|
||||
103["Segment<br>[1646, 1684, 0]"]
|
||||
104["Segment<br>[1646, 1684, 0]"]
|
||||
105["Segment<br>[1646, 1684, 0]"]
|
||||
106["Segment<br>[1646, 1684, 0]"]
|
||||
107["Segment<br>[1646, 1684, 0]"]
|
||||
108["Segment<br>[1646, 1684, 0]"]
|
||||
109["Segment<br>[1866, 1896, 0]"]
|
||||
110["Segment<br>[1866, 1896, 0]"]
|
||||
111["Segment<br>[1866, 1896, 0]"]
|
||||
112["Segment<br>[1866, 1896, 0]"]
|
||||
113["Segment<br>[1866, 1896, 0]"]
|
||||
114["Segment<br>[1866, 1896, 0]"]
|
||||
115["Segment<br>[1866, 1896, 0]"]
|
||||
116["Segment<br>[1866, 1896, 0]"]
|
||||
117["Segment<br>[1866, 1896, 0]"]
|
||||
118["Segment<br>[1866, 1896, 0]"]
|
||||
119["Segment<br>[1866, 1896, 0]"]
|
||||
120["Segment<br>[1866, 1896, 0]"]
|
||||
121["Segment<br>[1866, 1896, 0]"]
|
||||
122["Segment<br>[1866, 1896, 0]"]
|
||||
123["Segment<br>[1866, 1896, 0]"]
|
||||
124["Segment<br>[1866, 1896, 0]"]
|
||||
125["Segment<br>[1866, 1896, 0]"]
|
||||
126["Segment<br>[1866, 1896, 0]"]
|
||||
127["Segment<br>[1866, 1896, 0]"]
|
||||
128["Segment<br>[1866, 1896, 0]"]
|
||||
129["Segment<br>[1866, 1896, 0]"]
|
||||
130["Segment<br>[1866, 1896, 0]"]
|
||||
131["Segment<br>[1866, 1896, 0]"]
|
||||
132["Segment<br>[1866, 1896, 0]"]
|
||||
133["Segment<br>[1866, 1896, 0]"]
|
||||
134["Segment<br>[1866, 1896, 0]"]
|
||||
135["Segment<br>[1866, 1896, 0]"]
|
||||
136["Segment<br>[1866, 1896, 0]"]
|
||||
137["Segment<br>[1866, 1896, 0]"]
|
||||
138["Segment<br>[1866, 1896, 0]"]
|
||||
139["Segment<br>[1866, 1896, 0]"]
|
||||
140["Segment<br>[1866, 1896, 0]"]
|
||||
141["Segment<br>[1866, 1896, 0]"]
|
||||
142["Segment<br>[1866, 1896, 0]"]
|
||||
143["Segment<br>[1866, 1896, 0]"]
|
||||
144["Segment<br>[1866, 1896, 0]"]
|
||||
145["Segment<br>[1866, 1896, 0]"]
|
||||
146["Segment<br>[1866, 1896, 0]"]
|
||||
147["Segment<br>[1866, 1896, 0]"]
|
||||
148["Segment<br>[1866, 1896, 0]"]
|
||||
149["Segment<br>[1866, 1896, 0]"]
|
||||
150["Segment<br>[1866, 1896, 0]"]
|
||||
151["Segment<br>[1866, 1896, 0]"]
|
||||
152["Segment<br>[1866, 1896, 0]"]
|
||||
153["Segment<br>[1866, 1896, 0]"]
|
||||
154["Segment<br>[1866, 1896, 0]"]
|
||||
155["Segment<br>[1866, 1896, 0]"]
|
||||
156["Segment<br>[1866, 1896, 0]"]
|
||||
157["Segment<br>[1866, 1896, 0]"]
|
||||
158["Segment<br>[1866, 1896, 0]"]
|
||||
159["Segment<br>[1866, 1896, 0]"]
|
||||
160["Segment<br>[1866, 1896, 0]"]
|
||||
161["Segment<br>[1866, 1896, 0]"]
|
||||
162["Segment<br>[1866, 1896, 0]"]
|
||||
163["Segment<br>[1866, 1896, 0]"]
|
||||
164["Segment<br>[1866, 1896, 0]"]
|
||||
165["Segment<br>[1866, 1896, 0]"]
|
||||
166["Segment<br>[1866, 1896, 0]"]
|
||||
167["Segment<br>[1866, 1896, 0]"]
|
||||
168["Segment<br>[1866, 1896, 0]"]
|
||||
169["Segment<br>[1866, 1896, 0]"]
|
||||
170["Segment<br>[1866, 1896, 0]"]
|
||||
171["Segment<br>[1866, 1896, 0]"]
|
||||
172["Segment<br>[1866, 1896, 0]"]
|
||||
173["Segment<br>[1866, 1896, 0]"]
|
||||
174["Segment<br>[1866, 1896, 0]"]
|
||||
175["Segment<br>[1866, 1896, 0]"]
|
||||
176["Segment<br>[1866, 1896, 0]"]
|
||||
177["Segment<br>[1866, 1896, 0]"]
|
||||
178["Segment<br>[1866, 1896, 0]"]
|
||||
179["Segment<br>[1866, 1896, 0]"]
|
||||
180["Segment<br>[1866, 1896, 0]"]
|
||||
181["Segment<br>[1866, 1896, 0]"]
|
||||
182["Segment<br>[1866, 1896, 0]"]
|
||||
183["Segment<br>[1866, 1896, 0]"]
|
||||
184["Segment<br>[1866, 1896, 0]"]
|
||||
185["Segment<br>[1866, 1896, 0]"]
|
||||
186["Segment<br>[1866, 1896, 0]"]
|
||||
187["Segment<br>[1866, 1896, 0]"]
|
||||
188["Segment<br>[1866, 1896, 0]"]
|
||||
189["Segment<br>[1866, 1896, 0]"]
|
||||
190["Segment<br>[1866, 1896, 0]"]
|
||||
191["Segment<br>[1866, 1896, 0]"]
|
||||
192["Segment<br>[1866, 1896, 0]"]
|
||||
193["Segment<br>[1866, 1896, 0]"]
|
||||
194["Segment<br>[1866, 1896, 0]"]
|
||||
195["Segment<br>[1866, 1896, 0]"]
|
||||
196["Segment<br>[1866, 1896, 0]"]
|
||||
197["Segment<br>[1866, 1896, 0]"]
|
||||
198["Segment<br>[1866, 1896, 0]"]
|
||||
199["Segment<br>[1866, 1896, 0]"]
|
||||
200["Segment<br>[1866, 1896, 0]"]
|
||||
201["Segment<br>[1866, 1896, 0]"]
|
||||
202["Segment<br>[1866, 1896, 0]"]
|
||||
203["Segment<br>[1866, 1896, 0]"]
|
||||
204["Segment<br>[1866, 1896, 0]"]
|
||||
205["Segment<br>[1866, 1896, 0]"]
|
||||
206["Segment<br>[1866, 1896, 0]"]
|
||||
207["Segment<br>[1866, 1896, 0]"]
|
||||
208["Segment<br>[1866, 1896, 0]"]
|
||||
209["Segment<br>[1866, 1896, 0]"]
|
||||
210["Segment<br>[2053, 2122, 0]"]
|
||||
211["Segment<br>[2182, 2189, 0]"]
|
||||
218[Solid2d]
|
||||
end
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[2652, 2752, 0]"]
|
||||
212["Segment<br>[2758, 2785, 0]"]
|
||||
213["Segment<br>[2791, 2819, 0]"]
|
||||
214["Segment<br>[2825, 2853, 0]"]
|
||||
215["Segment<br>[2859, 2953, 0]"]
|
||||
216["Segment<br>[2959, 3042, 0]"]
|
||||
217["Segment<br>[3048, 3055, 0]"]
|
||||
6["Path<br>[2670, 2770, 0]"]
|
||||
212["Segment<br>[2776, 2803, 0]"]
|
||||
213["Segment<br>[2809, 2837, 0]"]
|
||||
214["Segment<br>[2843, 2871, 0]"]
|
||||
215["Segment<br>[2877, 2971, 0]"]
|
||||
216["Segment<br>[2977, 3060, 0]"]
|
||||
217["Segment<br>[3066, 3073, 0]"]
|
||||
220[Solid2d]
|
||||
end
|
||||
1["Plane<br>[1390, 1407, 0]"]
|
||||
2["Plane<br>[1909, 1926, 0]"]
|
||||
3["StartSketchOnFace<br>[2615, 2646, 0]"]
|
||||
221["Sweep Extrusion<br>[1469, 1497, 0]"]
|
||||
222["Sweep Extrusion<br>[2177, 2205, 0]"]
|
||||
223["Sweep Extrusion<br>[3061, 3090, 0]"]
|
||||
1["Plane<br>[1408, 1425, 0]"]
|
||||
2["Plane<br>[1927, 1944, 0]"]
|
||||
3["StartSketchOnFace<br>[2633, 2664, 0]"]
|
||||
221["Sweep Extrusion<br>[1487, 1515, 0]"]
|
||||
222["Sweep Extrusion<br>[2195, 2223, 0]"]
|
||||
223["Sweep Extrusion<br>[3079, 3108, 0]"]
|
||||
224[Wall]
|
||||
225[Wall]
|
||||
226[Wall]
|
||||
|
||||
@ -4751,6 +4751,31 @@ description: Result of parsing gear.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,100 +1,100 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[923, 948, 0]"]
|
||||
18["Segment<br>[956, 978, 0]"]
|
||||
21["Segment<br>[986, 1030, 0]"]
|
||||
23["Segment<br>[1038, 1065, 0]"]
|
||||
24["Segment<br>[1073, 1117, 0]"]
|
||||
26["Segment<br>[1125, 1132, 0]"]
|
||||
11["Path<br>[941, 966, 0]"]
|
||||
18["Segment<br>[974, 996, 0]"]
|
||||
21["Segment<br>[1004, 1048, 0]"]
|
||||
23["Segment<br>[1056, 1083, 0]"]
|
||||
24["Segment<br>[1091, 1135, 0]"]
|
||||
26["Segment<br>[1143, 1150, 0]"]
|
||||
74[Solid2d]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[923, 948, 0]"]
|
||||
19["Segment<br>[956, 978, 0]"]
|
||||
20["Segment<br>[986, 1030, 0]"]
|
||||
22["Segment<br>[1038, 1065, 0]"]
|
||||
25["Segment<br>[1073, 1117, 0]"]
|
||||
27["Segment<br>[1125, 1132, 0]"]
|
||||
12["Path<br>[941, 966, 0]"]
|
||||
19["Segment<br>[974, 996, 0]"]
|
||||
20["Segment<br>[1004, 1048, 0]"]
|
||||
22["Segment<br>[1056, 1083, 0]"]
|
||||
25["Segment<br>[1091, 1135, 0]"]
|
||||
27["Segment<br>[1143, 1150, 0]"]
|
||||
77[Solid2d]
|
||||
end
|
||||
subgraph path13 [Path]
|
||||
13["Path<br>[2725, 2812, 0]"]
|
||||
28["Segment<br>[2820, 2899, 0]"]
|
||||
30["Segment<br>[2907, 2972, 0]"]
|
||||
32["Segment<br>[2980, 3062, 0]"]
|
||||
34["Segment<br>[3070, 3116, 0]"]
|
||||
37["Segment<br>[3124, 3203, 0]"]
|
||||
38["Segment<br>[3211, 3278, 0]"]
|
||||
40["Segment<br>[3286, 3365, 0]"]
|
||||
42["Segment<br>[3373, 3419, 0]"]
|
||||
44["Segment<br>[3427, 3509, 0]"]
|
||||
46["Segment<br>[3517, 3585, 0]"]
|
||||
49["Segment<br>[3593, 3672, 0]"]
|
||||
50["Segment<br>[3680, 3745, 0]"]
|
||||
52["Segment<br>[3753, 3835, 0]"]
|
||||
55["Segment<br>[3843, 3911, 0]"]
|
||||
56["Segment<br>[3919, 4001, 0]"]
|
||||
59["Segment<br>[4009, 4058, 0]"]
|
||||
61["Segment<br>[4066, 4073, 0]"]
|
||||
13["Path<br>[2743, 2830, 0]"]
|
||||
28["Segment<br>[2838, 2917, 0]"]
|
||||
30["Segment<br>[2925, 2990, 0]"]
|
||||
32["Segment<br>[2998, 3080, 0]"]
|
||||
34["Segment<br>[3088, 3134, 0]"]
|
||||
37["Segment<br>[3142, 3221, 0]"]
|
||||
38["Segment<br>[3229, 3296, 0]"]
|
||||
40["Segment<br>[3304, 3383, 0]"]
|
||||
42["Segment<br>[3391, 3437, 0]"]
|
||||
44["Segment<br>[3445, 3527, 0]"]
|
||||
46["Segment<br>[3535, 3603, 0]"]
|
||||
49["Segment<br>[3611, 3690, 0]"]
|
||||
50["Segment<br>[3698, 3763, 0]"]
|
||||
52["Segment<br>[3771, 3853, 0]"]
|
||||
55["Segment<br>[3861, 3929, 0]"]
|
||||
56["Segment<br>[3937, 4019, 0]"]
|
||||
59["Segment<br>[4027, 4076, 0]"]
|
||||
61["Segment<br>[4084, 4091, 0]"]
|
||||
71[Solid2d]
|
||||
end
|
||||
subgraph path14 [Path]
|
||||
14["Path<br>[2725, 2812, 0]"]
|
||||
29["Segment<br>[2820, 2899, 0]"]
|
||||
31["Segment<br>[2907, 2972, 0]"]
|
||||
33["Segment<br>[2980, 3062, 0]"]
|
||||
35["Segment<br>[3070, 3116, 0]"]
|
||||
36["Segment<br>[3124, 3203, 0]"]
|
||||
39["Segment<br>[3211, 3278, 0]"]
|
||||
41["Segment<br>[3286, 3365, 0]"]
|
||||
43["Segment<br>[3373, 3419, 0]"]
|
||||
45["Segment<br>[3427, 3509, 0]"]
|
||||
47["Segment<br>[3517, 3585, 0]"]
|
||||
48["Segment<br>[3593, 3672, 0]"]
|
||||
51["Segment<br>[3680, 3745, 0]"]
|
||||
53["Segment<br>[3753, 3835, 0]"]
|
||||
54["Segment<br>[3843, 3911, 0]"]
|
||||
57["Segment<br>[3919, 4001, 0]"]
|
||||
58["Segment<br>[4009, 4058, 0]"]
|
||||
60["Segment<br>[4066, 4073, 0]"]
|
||||
14["Path<br>[2743, 2830, 0]"]
|
||||
29["Segment<br>[2838, 2917, 0]"]
|
||||
31["Segment<br>[2925, 2990, 0]"]
|
||||
33["Segment<br>[2998, 3080, 0]"]
|
||||
35["Segment<br>[3088, 3134, 0]"]
|
||||
36["Segment<br>[3142, 3221, 0]"]
|
||||
39["Segment<br>[3229, 3296, 0]"]
|
||||
41["Segment<br>[3304, 3383, 0]"]
|
||||
43["Segment<br>[3391, 3437, 0]"]
|
||||
45["Segment<br>[3445, 3527, 0]"]
|
||||
47["Segment<br>[3535, 3603, 0]"]
|
||||
48["Segment<br>[3611, 3690, 0]"]
|
||||
51["Segment<br>[3698, 3763, 0]"]
|
||||
53["Segment<br>[3771, 3853, 0]"]
|
||||
54["Segment<br>[3861, 3929, 0]"]
|
||||
57["Segment<br>[3937, 4019, 0]"]
|
||||
58["Segment<br>[4027, 4076, 0]"]
|
||||
60["Segment<br>[4084, 4091, 0]"]
|
||||
72[Solid2d]
|
||||
end
|
||||
subgraph path15 [Path]
|
||||
15["Path<br>[4217, 4242, 0]"]
|
||||
62["Segment<br>[4250, 4291, 0]"]
|
||||
64["Segment<br>[4299, 4340, 0]"]
|
||||
67["Segment<br>[4348, 4401, 0]"]
|
||||
68["Segment<br>[4409, 4430, 0]"]
|
||||
15["Path<br>[4235, 4260, 0]"]
|
||||
62["Segment<br>[4268, 4309, 0]"]
|
||||
64["Segment<br>[4317, 4358, 0]"]
|
||||
67["Segment<br>[4366, 4419, 0]"]
|
||||
68["Segment<br>[4427, 4448, 0]"]
|
||||
73[Solid2d]
|
||||
end
|
||||
subgraph path16 [Path]
|
||||
16["Path<br>[4217, 4242, 0]"]
|
||||
63["Segment<br>[4250, 4291, 0]"]
|
||||
65["Segment<br>[4299, 4340, 0]"]
|
||||
66["Segment<br>[4348, 4401, 0]"]
|
||||
69["Segment<br>[4409, 4430, 0]"]
|
||||
16["Path<br>[4235, 4260, 0]"]
|
||||
63["Segment<br>[4268, 4309, 0]"]
|
||||
65["Segment<br>[4317, 4358, 0]"]
|
||||
66["Segment<br>[4366, 4419, 0]"]
|
||||
69["Segment<br>[4427, 4448, 0]"]
|
||||
76[Solid2d]
|
||||
end
|
||||
subgraph path17 [Path]
|
||||
17["Path<br>[4596, 4676, 0]"]
|
||||
70["Segment<br>[4596, 4676, 0]"]
|
||||
17["Path<br>[4614, 4694, 0]"]
|
||||
70["Segment<br>[4614, 4694, 0]"]
|
||||
75[Solid2d]
|
||||
end
|
||||
1["Plane<br>[1218, 1256, 0]"]
|
||||
2["Plane<br>[1712, 1750, 0]"]
|
||||
3["Plane<br>[2697, 2717, 0]"]
|
||||
4["Plane<br>[4189, 4209, 0]"]
|
||||
5["Plane<br>[4573, 4590, 0]"]
|
||||
6["Plane<br>[5565, 5600, 0]"]
|
||||
7["StartSketchOnPlane<br>[895, 915, 0]"]
|
||||
8["StartSketchOnPlane<br>[895, 915, 0]"]
|
||||
9["StartSketchOnPlane<br>[4189, 4209, 0]"]
|
||||
10["StartSketchOnPlane<br>[2697, 2717, 0]"]
|
||||
78["Sweep Extrusion<br>[1205, 1299, 0]"]
|
||||
79["Sweep Revolve<br>[1699, 1781, 0]"]
|
||||
80["Sweep Extrusion<br>[5029, 5071, 0]"]
|
||||
81["Sweep Extrusion<br>[5683, 5734, 0]"]
|
||||
1["Plane<br>[1236, 1274, 0]"]
|
||||
2["Plane<br>[1730, 1768, 0]"]
|
||||
3["Plane<br>[2715, 2735, 0]"]
|
||||
4["Plane<br>[4207, 4227, 0]"]
|
||||
5["Plane<br>[4591, 4608, 0]"]
|
||||
6["Plane<br>[5583, 5618, 0]"]
|
||||
7["StartSketchOnPlane<br>[913, 933, 0]"]
|
||||
8["StartSketchOnPlane<br>[913, 933, 0]"]
|
||||
9["StartSketchOnPlane<br>[4207, 4227, 0]"]
|
||||
10["StartSketchOnPlane<br>[2715, 2735, 0]"]
|
||||
78["Sweep Extrusion<br>[1223, 1317, 0]"]
|
||||
79["Sweep Revolve<br>[1717, 1799, 0]"]
|
||||
80["Sweep Extrusion<br>[5047, 5089, 0]"]
|
||||
81["Sweep Extrusion<br>[5701, 5752, 0]"]
|
||||
82[Wall]
|
||||
83[Wall]
|
||||
84[Wall]
|
||||
@ -157,14 +157,14 @@ flowchart LR
|
||||
141["SweepEdge Adjacent"]
|
||||
142["SweepEdge Adjacent"]
|
||||
143["SweepEdge Adjacent"]
|
||||
144["EdgeCut Fillet<br>[5134, 5473, 0]"]
|
||||
145["EdgeCut Fillet<br>[5134, 5473, 0]"]
|
||||
146["EdgeCut Fillet<br>[5134, 5473, 0]"]
|
||||
147["EdgeCut Fillet<br>[5134, 5473, 0]"]
|
||||
148["EdgeCut Fillet<br>[5798, 6142, 0]"]
|
||||
149["EdgeCut Fillet<br>[5798, 6142, 0]"]
|
||||
150["EdgeCut Fillet<br>[5798, 6142, 0]"]
|
||||
151["EdgeCut Fillet<br>[5798, 6142, 0]"]
|
||||
144["EdgeCut Fillet<br>[5152, 5491, 0]"]
|
||||
145["EdgeCut Fillet<br>[5152, 5491, 0]"]
|
||||
146["EdgeCut Fillet<br>[5152, 5491, 0]"]
|
||||
147["EdgeCut Fillet<br>[5152, 5491, 0]"]
|
||||
148["EdgeCut Fillet<br>[5816, 6160, 0]"]
|
||||
149["EdgeCut Fillet<br>[5816, 6160, 0]"]
|
||||
150["EdgeCut Fillet<br>[5816, 6160, 0]"]
|
||||
151["EdgeCut Fillet<br>[5816, 6160, 0]"]
|
||||
1 <--x 8
|
||||
1 --- 12
|
||||
2 <--x 7
|
||||
|
||||
@ -8145,6 +8145,31 @@ description: Result of parsing gridfinity-baseplate-magnets.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -10955,9 +10955,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4282,
|
||||
"end": 4290,
|
||||
"start": 4282,
|
||||
"commentStart": 4300,
|
||||
"end": 4308,
|
||||
"start": 4300,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line001"
|
||||
},
|
||||
@ -10968,9 +10968,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4331,
|
||||
"end": 4339,
|
||||
"start": 4331,
|
||||
"commentStart": 4349,
|
||||
"end": 4357,
|
||||
"start": 4349,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line002"
|
||||
},
|
||||
@ -10981,9 +10981,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4392,
|
||||
"end": 4400,
|
||||
"start": 4392,
|
||||
"commentStart": 4410,
|
||||
"end": 4418,
|
||||
"start": 4410,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line003"
|
||||
},
|
||||
@ -10994,9 +10994,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4421,
|
||||
"end": 4429,
|
||||
"start": 4421,
|
||||
"commentStart": 4439,
|
||||
"end": 4447,
|
||||
"start": 4439,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line004"
|
||||
},
|
||||
@ -11017,9 +11017,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4282,
|
||||
"end": 4290,
|
||||
"start": 4282,
|
||||
"commentStart": 4300,
|
||||
"end": 4308,
|
||||
"start": 4300,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line001"
|
||||
},
|
||||
@ -11042,9 +11042,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4331,
|
||||
"end": 4339,
|
||||
"start": 4331,
|
||||
"commentStart": 4349,
|
||||
"end": 4357,
|
||||
"start": 4349,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line002"
|
||||
},
|
||||
@ -11067,9 +11067,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
42.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4392,
|
||||
"end": 4400,
|
||||
"start": 4392,
|
||||
"commentStart": 4410,
|
||||
"end": 4418,
|
||||
"start": 4410,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line003"
|
||||
},
|
||||
@ -11092,9 +11092,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
42.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4421,
|
||||
"end": 4429,
|
||||
"start": 4421,
|
||||
"commentStart": 4439,
|
||||
"end": 4447,
|
||||
"start": 4439,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line004"
|
||||
},
|
||||
@ -11201,9 +11201,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4282,
|
||||
"end": 4290,
|
||||
"start": 4282,
|
||||
"commentStart": 4300,
|
||||
"end": 4308,
|
||||
"start": 4300,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line001"
|
||||
},
|
||||
@ -11214,9 +11214,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4331,
|
||||
"end": 4339,
|
||||
"start": 4331,
|
||||
"commentStart": 4349,
|
||||
"end": 4357,
|
||||
"start": 4349,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line002"
|
||||
},
|
||||
@ -11227,9 +11227,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4392,
|
||||
"end": 4400,
|
||||
"start": 4392,
|
||||
"commentStart": 4410,
|
||||
"end": 4418,
|
||||
"start": 4410,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line003"
|
||||
},
|
||||
@ -11240,9 +11240,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4421,
|
||||
"end": 4429,
|
||||
"start": 4421,
|
||||
"commentStart": 4439,
|
||||
"end": 4447,
|
||||
"start": 4439,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line004"
|
||||
},
|
||||
@ -11263,9 +11263,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4282,
|
||||
"end": 4290,
|
||||
"start": 4282,
|
||||
"commentStart": 4300,
|
||||
"end": 4308,
|
||||
"start": 4300,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line001"
|
||||
},
|
||||
@ -11288,9 +11288,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4331,
|
||||
"end": 4339,
|
||||
"start": 4331,
|
||||
"commentStart": 4349,
|
||||
"end": 4357,
|
||||
"start": 4349,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line002"
|
||||
},
|
||||
@ -11313,9 +11313,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
42.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4392,
|
||||
"end": 4400,
|
||||
"start": 4392,
|
||||
"commentStart": 4410,
|
||||
"end": 4418,
|
||||
"start": 4410,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line003"
|
||||
},
|
||||
@ -11338,9 +11338,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
42.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4421,
|
||||
"end": 4429,
|
||||
"start": 4421,
|
||||
"commentStart": 4439,
|
||||
"end": 4447,
|
||||
"start": 4439,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line004"
|
||||
},
|
||||
@ -11521,9 +11521,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4282,
|
||||
"end": 4290,
|
||||
"start": 4282,
|
||||
"commentStart": 4300,
|
||||
"end": 4308,
|
||||
"start": 4300,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line001"
|
||||
},
|
||||
@ -11534,9 +11534,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4331,
|
||||
"end": 4339,
|
||||
"start": 4331,
|
||||
"commentStart": 4349,
|
||||
"end": 4357,
|
||||
"start": 4349,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line002"
|
||||
},
|
||||
@ -11547,9 +11547,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4392,
|
||||
"end": 4400,
|
||||
"start": 4392,
|
||||
"commentStart": 4410,
|
||||
"end": 4418,
|
||||
"start": 4410,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line003"
|
||||
},
|
||||
@ -11560,9 +11560,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4421,
|
||||
"end": 4429,
|
||||
"start": 4421,
|
||||
"commentStart": 4439,
|
||||
"end": 4447,
|
||||
"start": 4439,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line004"
|
||||
},
|
||||
@ -11583,9 +11583,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4282,
|
||||
"end": 4290,
|
||||
"start": 4282,
|
||||
"commentStart": 4300,
|
||||
"end": 4308,
|
||||
"start": 4300,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line001"
|
||||
},
|
||||
@ -11608,9 +11608,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4331,
|
||||
"end": 4339,
|
||||
"start": 4331,
|
||||
"commentStart": 4349,
|
||||
"end": 4357,
|
||||
"start": 4349,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line002"
|
||||
},
|
||||
@ -11633,9 +11633,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
42.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4392,
|
||||
"end": 4400,
|
||||
"start": 4392,
|
||||
"commentStart": 4410,
|
||||
"end": 4418,
|
||||
"start": 4410,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line003"
|
||||
},
|
||||
@ -11658,9 +11658,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
42.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4421,
|
||||
"end": 4429,
|
||||
"start": 4421,
|
||||
"commentStart": 4439,
|
||||
"end": 4447,
|
||||
"start": 4439,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line004"
|
||||
},
|
||||
@ -11767,9 +11767,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4282,
|
||||
"end": 4290,
|
||||
"start": 4282,
|
||||
"commentStart": 4300,
|
||||
"end": 4308,
|
||||
"start": 4300,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line001"
|
||||
},
|
||||
@ -11780,9 +11780,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4331,
|
||||
"end": 4339,
|
||||
"start": 4331,
|
||||
"commentStart": 4349,
|
||||
"end": 4357,
|
||||
"start": 4349,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line002"
|
||||
},
|
||||
@ -11793,9 +11793,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4392,
|
||||
"end": 4400,
|
||||
"start": 4392,
|
||||
"commentStart": 4410,
|
||||
"end": 4418,
|
||||
"start": 4410,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line003"
|
||||
},
|
||||
@ -11806,9 +11806,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 4421,
|
||||
"end": 4429,
|
||||
"start": 4421,
|
||||
"commentStart": 4439,
|
||||
"end": 4447,
|
||||
"start": 4439,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line004"
|
||||
},
|
||||
@ -11829,9 +11829,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4282,
|
||||
"end": 4290,
|
||||
"start": 4282,
|
||||
"commentStart": 4300,
|
||||
"end": 4308,
|
||||
"start": 4300,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line001"
|
||||
},
|
||||
@ -11854,9 +11854,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4331,
|
||||
"end": 4339,
|
||||
"start": 4331,
|
||||
"commentStart": 4349,
|
||||
"end": 4357,
|
||||
"start": 4349,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line002"
|
||||
},
|
||||
@ -11879,9 +11879,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
42.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4392,
|
||||
"end": 4400,
|
||||
"start": 4392,
|
||||
"commentStart": 4410,
|
||||
"end": 4418,
|
||||
"start": 4410,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line003"
|
||||
},
|
||||
@ -11904,9 +11904,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
42.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4421,
|
||||
"end": 4429,
|
||||
"start": 4421,
|
||||
"commentStart": 4439,
|
||||
"end": 4447,
|
||||
"start": 4439,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line004"
|
||||
},
|
||||
@ -12091,9 +12091,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4282,
|
||||
"end": 4290,
|
||||
"start": 4282,
|
||||
"commentStart": 4300,
|
||||
"end": 4308,
|
||||
"start": 4300,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line001"
|
||||
},
|
||||
@ -12116,9 +12116,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4331,
|
||||
"end": 4339,
|
||||
"start": 4331,
|
||||
"commentStart": 4349,
|
||||
"end": 4357,
|
||||
"start": 4349,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line002"
|
||||
},
|
||||
@ -12141,9 +12141,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
42.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4392,
|
||||
"end": 4400,
|
||||
"start": 4392,
|
||||
"commentStart": 4410,
|
||||
"end": 4418,
|
||||
"start": 4410,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line003"
|
||||
},
|
||||
@ -12166,9 +12166,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
42.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4421,
|
||||
"end": 4429,
|
||||
"start": 4421,
|
||||
"commentStart": 4439,
|
||||
"end": 4447,
|
||||
"start": 4439,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line004"
|
||||
},
|
||||
@ -12271,9 +12271,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4282,
|
||||
"end": 4290,
|
||||
"start": 4282,
|
||||
"commentStart": 4300,
|
||||
"end": 4308,
|
||||
"start": 4300,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line001"
|
||||
},
|
||||
@ -12296,9 +12296,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4331,
|
||||
"end": 4339,
|
||||
"start": 4331,
|
||||
"commentStart": 4349,
|
||||
"end": 4357,
|
||||
"start": 4349,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line002"
|
||||
},
|
||||
@ -12321,9 +12321,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
42.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4392,
|
||||
"end": 4400,
|
||||
"start": 4392,
|
||||
"commentStart": 4410,
|
||||
"end": 4418,
|
||||
"start": 4410,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line003"
|
||||
},
|
||||
@ -12346,9 +12346,9 @@ description: Variables in memory after executing gridfinity-baseplate-magnets.kc
|
||||
42.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 4421,
|
||||
"end": 4429,
|
||||
"start": 4421,
|
||||
"commentStart": 4439,
|
||||
"end": 4447,
|
||||
"start": 4439,
|
||||
"type": "TagDeclarator",
|
||||
"value": "line004"
|
||||
},
|
||||
|
||||
@ -1,29 +1,29 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path5 [Path]
|
||||
5["Path<br>[800, 825, 0]"]
|
||||
7["Segment<br>[833, 855, 0]"]
|
||||
10["Segment<br>[863, 907, 0]"]
|
||||
12["Segment<br>[915, 942, 0]"]
|
||||
13["Segment<br>[950, 994, 0]"]
|
||||
15["Segment<br>[1002, 1009, 0]"]
|
||||
5["Path<br>[818, 843, 0]"]
|
||||
7["Segment<br>[851, 873, 0]"]
|
||||
10["Segment<br>[881, 925, 0]"]
|
||||
12["Segment<br>[933, 960, 0]"]
|
||||
13["Segment<br>[968, 1012, 0]"]
|
||||
15["Segment<br>[1020, 1027, 0]"]
|
||||
17[Solid2d]
|
||||
end
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[800, 825, 0]"]
|
||||
8["Segment<br>[833, 855, 0]"]
|
||||
9["Segment<br>[863, 907, 0]"]
|
||||
11["Segment<br>[915, 942, 0]"]
|
||||
14["Segment<br>[950, 994, 0]"]
|
||||
16["Segment<br>[1002, 1009, 0]"]
|
||||
6["Path<br>[818, 843, 0]"]
|
||||
8["Segment<br>[851, 873, 0]"]
|
||||
9["Segment<br>[881, 925, 0]"]
|
||||
11["Segment<br>[933, 960, 0]"]
|
||||
14["Segment<br>[968, 1012, 0]"]
|
||||
16["Segment<br>[1020, 1027, 0]"]
|
||||
18[Solid2d]
|
||||
end
|
||||
1["Plane<br>[1095, 1133, 0]"]
|
||||
2["Plane<br>[1589, 1627, 0]"]
|
||||
3["StartSketchOnPlane<br>[772, 792, 0]"]
|
||||
4["StartSketchOnPlane<br>[772, 792, 0]"]
|
||||
19["Sweep Extrusion<br>[1082, 1176, 0]"]
|
||||
20["Sweep Revolve<br>[1576, 1658, 0]"]
|
||||
1["Plane<br>[1113, 1151, 0]"]
|
||||
2["Plane<br>[1607, 1645, 0]"]
|
||||
3["StartSketchOnPlane<br>[790, 810, 0]"]
|
||||
4["StartSketchOnPlane<br>[790, 810, 0]"]
|
||||
19["Sweep Extrusion<br>[1100, 1194, 0]"]
|
||||
20["Sweep Revolve<br>[1594, 1676, 0]"]
|
||||
21[Wall]
|
||||
22[Wall]
|
||||
23[Wall]
|
||||
|
||||
@ -2643,6 +2643,31 @@ description: Result of parsing gridfinity-baseplate.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,118 +1,118 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path13 [Path]
|
||||
13["Path<br>[1188, 1234, 0]"]
|
||||
22["Segment<br>[1242, 1264, 0]"]
|
||||
25["Segment<br>[1272, 1302, 0]"]
|
||||
26["Segment<br>[1310, 1354, 0]"]
|
||||
28["Segment<br>[1362, 1389, 0]"]
|
||||
30["Segment<br>[1397, 1441, 0]"]
|
||||
32["Segment<br>[1449, 1456, 0]"]
|
||||
13["Path<br>[1206, 1252, 0]"]
|
||||
22["Segment<br>[1260, 1282, 0]"]
|
||||
25["Segment<br>[1290, 1320, 0]"]
|
||||
26["Segment<br>[1328, 1372, 0]"]
|
||||
28["Segment<br>[1380, 1407, 0]"]
|
||||
30["Segment<br>[1415, 1459, 0]"]
|
||||
32["Segment<br>[1467, 1474, 0]"]
|
||||
79[Solid2d]
|
||||
end
|
||||
subgraph path14 [Path]
|
||||
14["Path<br>[1188, 1234, 0]"]
|
||||
23["Segment<br>[1242, 1264, 0]"]
|
||||
24["Segment<br>[1272, 1302, 0]"]
|
||||
27["Segment<br>[1310, 1354, 0]"]
|
||||
29["Segment<br>[1362, 1389, 0]"]
|
||||
31["Segment<br>[1397, 1441, 0]"]
|
||||
33["Segment<br>[1449, 1456, 0]"]
|
||||
14["Path<br>[1206, 1252, 0]"]
|
||||
23["Segment<br>[1260, 1282, 0]"]
|
||||
24["Segment<br>[1290, 1320, 0]"]
|
||||
27["Segment<br>[1328, 1372, 0]"]
|
||||
29["Segment<br>[1380, 1407, 0]"]
|
||||
31["Segment<br>[1415, 1459, 0]"]
|
||||
33["Segment<br>[1467, 1474, 0]"]
|
||||
80[Solid2d]
|
||||
end
|
||||
subgraph path15 [Path]
|
||||
15["Path<br>[2497, 2585, 0]"]
|
||||
34["Segment<br>[2591, 2655, 0]"]
|
||||
35["Segment<br>[2661, 2725, 0]"]
|
||||
36["Segment<br>[2731, 2784, 0]"]
|
||||
37["Segment<br>[2790, 2811, 0]"]
|
||||
15["Path<br>[2515, 2603, 0]"]
|
||||
34["Segment<br>[2609, 2673, 0]"]
|
||||
35["Segment<br>[2679, 2743, 0]"]
|
||||
36["Segment<br>[2749, 2802, 0]"]
|
||||
37["Segment<br>[2808, 2829, 0]"]
|
||||
77[Solid2d]
|
||||
end
|
||||
subgraph path16 [Path]
|
||||
16["Path<br>[3142, 3308, 0]"]
|
||||
38["Segment<br>[3142, 3308, 0]"]
|
||||
16["Path<br>[3160, 3326, 0]"]
|
||||
38["Segment<br>[3160, 3326, 0]"]
|
||||
76[Solid2d]
|
||||
end
|
||||
subgraph path17 [Path]
|
||||
17["Path<br>[4592, 4617, 0]"]
|
||||
39["Segment<br>[4623, 4695, 0]"]
|
||||
40["Segment<br>[4701, 4774, 0]"]
|
||||
41["Segment<br>[4780, 4833, 0]"]
|
||||
42["Segment<br>[4839, 4860, 0]"]
|
||||
17["Path<br>[4610, 4635, 0]"]
|
||||
39["Segment<br>[4641, 4713, 0]"]
|
||||
40["Segment<br>[4719, 4792, 0]"]
|
||||
41["Segment<br>[4798, 4851, 0]"]
|
||||
42["Segment<br>[4857, 4878, 0]"]
|
||||
75[Solid2d]
|
||||
end
|
||||
subgraph path18 [Path]
|
||||
18["Path<br>[5328, 5353, 0]"]
|
||||
45["Segment<br>[5413, 5456, 0]"]
|
||||
49["Segment<br>[5464, 5584, 0]"]
|
||||
53["Segment<br>[5647, 5696, 0]"]
|
||||
56["Segment<br>[5704, 5729, 0]"]
|
||||
60["Segment<br>[5737, 5780, 0]"]
|
||||
65["Segment<br>[5788, 5813, 0]"]
|
||||
68["Segment<br>[5821, 5865, 0]"]
|
||||
74["Segment<br>[5873, 5880, 0]"]
|
||||
18["Path<br>[5346, 5371, 0]"]
|
||||
45["Segment<br>[5431, 5474, 0]"]
|
||||
49["Segment<br>[5482, 5602, 0]"]
|
||||
53["Segment<br>[5665, 5714, 0]"]
|
||||
56["Segment<br>[5722, 5747, 0]"]
|
||||
60["Segment<br>[5755, 5798, 0]"]
|
||||
65["Segment<br>[5806, 5831, 0]"]
|
||||
68["Segment<br>[5839, 5883, 0]"]
|
||||
74["Segment<br>[5891, 5898, 0]"]
|
||||
78[Solid2d]
|
||||
end
|
||||
subgraph path19 [Path]
|
||||
19["Path<br>[5328, 5353, 0]"]
|
||||
43["Segment<br>[5413, 5456, 0]"]
|
||||
47["Segment<br>[5464, 5584, 0]"]
|
||||
51["Segment<br>[5647, 5696, 0]"]
|
||||
57["Segment<br>[5704, 5729, 0]"]
|
||||
59["Segment<br>[5737, 5780, 0]"]
|
||||
63["Segment<br>[5788, 5813, 0]"]
|
||||
67["Segment<br>[5821, 5865, 0]"]
|
||||
72["Segment<br>[5873, 5880, 0]"]
|
||||
19["Path<br>[5346, 5371, 0]"]
|
||||
43["Segment<br>[5431, 5474, 0]"]
|
||||
47["Segment<br>[5482, 5602, 0]"]
|
||||
51["Segment<br>[5665, 5714, 0]"]
|
||||
57["Segment<br>[5722, 5747, 0]"]
|
||||
59["Segment<br>[5755, 5798, 0]"]
|
||||
63["Segment<br>[5806, 5831, 0]"]
|
||||
67["Segment<br>[5839, 5883, 0]"]
|
||||
72["Segment<br>[5891, 5898, 0]"]
|
||||
81[Solid2d]
|
||||
end
|
||||
subgraph path20 [Path]
|
||||
20["Path<br>[5328, 5353, 0]"]
|
||||
44["Segment<br>[5413, 5456, 0]"]
|
||||
48["Segment<br>[5464, 5584, 0]"]
|
||||
52["Segment<br>[5647, 5696, 0]"]
|
||||
58["Segment<br>[5704, 5729, 0]"]
|
||||
61["Segment<br>[5737, 5780, 0]"]
|
||||
64["Segment<br>[5788, 5813, 0]"]
|
||||
69["Segment<br>[5821, 5865, 0]"]
|
||||
73["Segment<br>[5873, 5880, 0]"]
|
||||
20["Path<br>[5346, 5371, 0]"]
|
||||
44["Segment<br>[5431, 5474, 0]"]
|
||||
48["Segment<br>[5482, 5602, 0]"]
|
||||
52["Segment<br>[5665, 5714, 0]"]
|
||||
58["Segment<br>[5722, 5747, 0]"]
|
||||
61["Segment<br>[5755, 5798, 0]"]
|
||||
64["Segment<br>[5806, 5831, 0]"]
|
||||
69["Segment<br>[5839, 5883, 0]"]
|
||||
73["Segment<br>[5891, 5898, 0]"]
|
||||
82[Solid2d]
|
||||
end
|
||||
subgraph path21 [Path]
|
||||
21["Path<br>[5328, 5353, 0]"]
|
||||
46["Segment<br>[5413, 5456, 0]"]
|
||||
50["Segment<br>[5464, 5584, 0]"]
|
||||
54["Segment<br>[5647, 5696, 0]"]
|
||||
55["Segment<br>[5704, 5729, 0]"]
|
||||
62["Segment<br>[5737, 5780, 0]"]
|
||||
66["Segment<br>[5788, 5813, 0]"]
|
||||
70["Segment<br>[5821, 5865, 0]"]
|
||||
71["Segment<br>[5873, 5880, 0]"]
|
||||
21["Path<br>[5346, 5371, 0]"]
|
||||
46["Segment<br>[5431, 5474, 0]"]
|
||||
50["Segment<br>[5482, 5602, 0]"]
|
||||
54["Segment<br>[5665, 5714, 0]"]
|
||||
55["Segment<br>[5722, 5747, 0]"]
|
||||
62["Segment<br>[5755, 5798, 0]"]
|
||||
66["Segment<br>[5806, 5831, 0]"]
|
||||
70["Segment<br>[5839, 5883, 0]"]
|
||||
71["Segment<br>[5891, 5898, 0]"]
|
||||
83[Solid2d]
|
||||
end
|
||||
1["Plane<br>[1542, 1589, 0]"]
|
||||
2["Plane<br>[2121, 2168, 0]"]
|
||||
3["Plane<br>[2474, 2491, 0]"]
|
||||
4["Plane<br>[4553, 4585, 0]"]
|
||||
5["Plane<br>[5300, 5320, 0]"]
|
||||
6["Plane<br>[5300, 5320, 0]"]
|
||||
7["Plane<br>[5300, 5320, 0]"]
|
||||
8["Plane<br>[5300, 5320, 0]"]
|
||||
9["StartSketchOnPlane<br>[4539, 4586, 0]"]
|
||||
10["StartSketchOnPlane<br>[1160, 1180, 0]"]
|
||||
11["StartSketchOnPlane<br>[1160, 1180, 0]"]
|
||||
12["StartSketchOnFace<br>[3094, 3136, 0]"]
|
||||
84["Sweep Extrusion<br>[1529, 1632, 0]"]
|
||||
85["Sweep Revolve<br>[2108, 2199, 0]"]
|
||||
86["Sweep Extrusion<br>[2817, 2841, 0]"]
|
||||
87["Sweep Extrusion<br>[3530, 3557, 0]"]
|
||||
88["Sweep Extrusion<br>[3530, 3557, 0]"]
|
||||
89["Sweep Extrusion<br>[3530, 3557, 0]"]
|
||||
90["Sweep Extrusion<br>[3530, 3557, 0]"]
|
||||
91["Sweep Extrusion<br>[4866, 4910, 0]"]
|
||||
92["Sweep Extrusion<br>[6518, 6630, 0]"]
|
||||
93["Sweep Extrusion<br>[6696, 6810, 0]"]
|
||||
94["Sweep Revolve<br>[7636, 7691, 0]"]
|
||||
95["Sweep Revolve<br>[7753, 7807, 0]"]
|
||||
1["Plane<br>[1560, 1607, 0]"]
|
||||
2["Plane<br>[2139, 2186, 0]"]
|
||||
3["Plane<br>[2492, 2509, 0]"]
|
||||
4["Plane<br>[4571, 4603, 0]"]
|
||||
5["Plane<br>[5318, 5338, 0]"]
|
||||
6["Plane<br>[5318, 5338, 0]"]
|
||||
7["Plane<br>[5318, 5338, 0]"]
|
||||
8["Plane<br>[5318, 5338, 0]"]
|
||||
9["StartSketchOnPlane<br>[4557, 4604, 0]"]
|
||||
10["StartSketchOnPlane<br>[1178, 1198, 0]"]
|
||||
11["StartSketchOnPlane<br>[1178, 1198, 0]"]
|
||||
12["StartSketchOnFace<br>[3112, 3154, 0]"]
|
||||
84["Sweep Extrusion<br>[1547, 1650, 0]"]
|
||||
85["Sweep Revolve<br>[2126, 2217, 0]"]
|
||||
86["Sweep Extrusion<br>[2835, 2859, 0]"]
|
||||
87["Sweep Extrusion<br>[3548, 3575, 0]"]
|
||||
88["Sweep Extrusion<br>[3548, 3575, 0]"]
|
||||
89["Sweep Extrusion<br>[3548, 3575, 0]"]
|
||||
90["Sweep Extrusion<br>[3548, 3575, 0]"]
|
||||
91["Sweep Extrusion<br>[4884, 4928, 0]"]
|
||||
92["Sweep Extrusion<br>[6536, 6648, 0]"]
|
||||
93["Sweep Extrusion<br>[6714, 6828, 0]"]
|
||||
94["Sweep Revolve<br>[7654, 7709, 0]"]
|
||||
95["Sweep Revolve<br>[7771, 7825, 0]"]
|
||||
96[Wall]
|
||||
97[Wall]
|
||||
98[Wall]
|
||||
@ -283,14 +283,14 @@ flowchart LR
|
||||
263["SweepEdge Adjacent"]
|
||||
264["SweepEdge Adjacent"]
|
||||
265["SweepEdge Adjacent"]
|
||||
266["EdgeCut Fillet<br>[2847, 3077, 0]"]
|
||||
267["EdgeCut Fillet<br>[2847, 3077, 0]"]
|
||||
268["EdgeCut Fillet<br>[2847, 3077, 0]"]
|
||||
269["EdgeCut Fillet<br>[2847, 3077, 0]"]
|
||||
270["EdgeCut Fillet<br>[4916, 5149, 0]"]
|
||||
271["EdgeCut Fillet<br>[4916, 5149, 0]"]
|
||||
272["EdgeCut Fillet<br>[4916, 5149, 0]"]
|
||||
273["EdgeCut Fillet<br>[4916, 5149, 0]"]
|
||||
266["EdgeCut Fillet<br>[2865, 3095, 0]"]
|
||||
267["EdgeCut Fillet<br>[2865, 3095, 0]"]
|
||||
268["EdgeCut Fillet<br>[2865, 3095, 0]"]
|
||||
269["EdgeCut Fillet<br>[2865, 3095, 0]"]
|
||||
270["EdgeCut Fillet<br>[4934, 5167, 0]"]
|
||||
271["EdgeCut Fillet<br>[4934, 5167, 0]"]
|
||||
272["EdgeCut Fillet<br>[4934, 5167, 0]"]
|
||||
273["EdgeCut Fillet<br>[4934, 5167, 0]"]
|
||||
1 <--x 10
|
||||
1 --- 14
|
||||
2 <--x 11
|
||||
|
||||
@ -11102,6 +11102,31 @@ description: Result of parsing gridfinity-bins-stacking-lip.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,62 +1,62 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path9 [Path]
|
||||
9["Path<br>[929, 975, 0]"]
|
||||
14["Segment<br>[983, 1005, 0]"]
|
||||
17["Segment<br>[1013, 1043, 0]"]
|
||||
18["Segment<br>[1051, 1095, 0]"]
|
||||
20["Segment<br>[1103, 1130, 0]"]
|
||||
22["Segment<br>[1138, 1182, 0]"]
|
||||
24["Segment<br>[1190, 1197, 0]"]
|
||||
9["Path<br>[947, 993, 0]"]
|
||||
14["Segment<br>[1001, 1023, 0]"]
|
||||
17["Segment<br>[1031, 1061, 0]"]
|
||||
18["Segment<br>[1069, 1113, 0]"]
|
||||
20["Segment<br>[1121, 1148, 0]"]
|
||||
22["Segment<br>[1156, 1200, 0]"]
|
||||
24["Segment<br>[1208, 1215, 0]"]
|
||||
38[Solid2d]
|
||||
end
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[929, 975, 0]"]
|
||||
15["Segment<br>[983, 1005, 0]"]
|
||||
16["Segment<br>[1013, 1043, 0]"]
|
||||
19["Segment<br>[1051, 1095, 0]"]
|
||||
21["Segment<br>[1103, 1130, 0]"]
|
||||
23["Segment<br>[1138, 1182, 0]"]
|
||||
25["Segment<br>[1190, 1197, 0]"]
|
||||
10["Path<br>[947, 993, 0]"]
|
||||
15["Segment<br>[1001, 1023, 0]"]
|
||||
16["Segment<br>[1031, 1061, 0]"]
|
||||
19["Segment<br>[1069, 1113, 0]"]
|
||||
21["Segment<br>[1121, 1148, 0]"]
|
||||
23["Segment<br>[1156, 1200, 0]"]
|
||||
25["Segment<br>[1208, 1215, 0]"]
|
||||
39[Solid2d]
|
||||
end
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[2238, 2326, 0]"]
|
||||
26["Segment<br>[2332, 2396, 0]"]
|
||||
27["Segment<br>[2402, 2466, 0]"]
|
||||
28["Segment<br>[2472, 2525, 0]"]
|
||||
29["Segment<br>[2531, 2552, 0]"]
|
||||
11["Path<br>[2256, 2344, 0]"]
|
||||
26["Segment<br>[2350, 2414, 0]"]
|
||||
27["Segment<br>[2420, 2484, 0]"]
|
||||
28["Segment<br>[2490, 2543, 0]"]
|
||||
29["Segment<br>[2549, 2570, 0]"]
|
||||
37[Solid2d]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[2883, 3049, 0]"]
|
||||
30["Segment<br>[2883, 3049, 0]"]
|
||||
12["Path<br>[2901, 3067, 0]"]
|
||||
30["Segment<br>[2901, 3067, 0]"]
|
||||
36[Solid2d]
|
||||
end
|
||||
subgraph path13 [Path]
|
||||
13["Path<br>[4362, 4387, 0]"]
|
||||
31["Segment<br>[4393, 4465, 0]"]
|
||||
32["Segment<br>[4471, 4544, 0]"]
|
||||
33["Segment<br>[4550, 4603, 0]"]
|
||||
34["Segment<br>[4609, 4630, 0]"]
|
||||
13["Path<br>[4380, 4405, 0]"]
|
||||
31["Segment<br>[4411, 4483, 0]"]
|
||||
32["Segment<br>[4489, 4562, 0]"]
|
||||
33["Segment<br>[4568, 4621, 0]"]
|
||||
34["Segment<br>[4627, 4648, 0]"]
|
||||
35[Solid2d]
|
||||
end
|
||||
1["Plane<br>[1283, 1330, 0]"]
|
||||
2["Plane<br>[1862, 1909, 0]"]
|
||||
3["Plane<br>[2215, 2232, 0]"]
|
||||
4["Plane<br>[4323, 4355, 0]"]
|
||||
5["StartSketchOnPlane<br>[4309, 4356, 0]"]
|
||||
6["StartSketchOnPlane<br>[901, 921, 0]"]
|
||||
7["StartSketchOnPlane<br>[901, 921, 0]"]
|
||||
8["StartSketchOnFace<br>[2835, 2877, 0]"]
|
||||
40["Sweep Extrusion<br>[1270, 1373, 0]"]
|
||||
41["Sweep Revolve<br>[1849, 1940, 0]"]
|
||||
42["Sweep Extrusion<br>[2558, 2582, 0]"]
|
||||
43["Sweep Extrusion<br>[3271, 3298, 0]"]
|
||||
44["Sweep Extrusion<br>[3271, 3298, 0]"]
|
||||
45["Sweep Extrusion<br>[3271, 3298, 0]"]
|
||||
46["Sweep Extrusion<br>[3271, 3298, 0]"]
|
||||
47["Sweep Extrusion<br>[4636, 4680, 0]"]
|
||||
1["Plane<br>[1301, 1348, 0]"]
|
||||
2["Plane<br>[1880, 1927, 0]"]
|
||||
3["Plane<br>[2233, 2250, 0]"]
|
||||
4["Plane<br>[4341, 4373, 0]"]
|
||||
5["StartSketchOnPlane<br>[4327, 4374, 0]"]
|
||||
6["StartSketchOnPlane<br>[919, 939, 0]"]
|
||||
7["StartSketchOnPlane<br>[919, 939, 0]"]
|
||||
8["StartSketchOnFace<br>[2853, 2895, 0]"]
|
||||
40["Sweep Extrusion<br>[1288, 1391, 0]"]
|
||||
41["Sweep Revolve<br>[1867, 1958, 0]"]
|
||||
42["Sweep Extrusion<br>[2576, 2600, 0]"]
|
||||
43["Sweep Extrusion<br>[3289, 3316, 0]"]
|
||||
44["Sweep Extrusion<br>[3289, 3316, 0]"]
|
||||
45["Sweep Extrusion<br>[3289, 3316, 0]"]
|
||||
46["Sweep Extrusion<br>[3289, 3316, 0]"]
|
||||
47["Sweep Extrusion<br>[4654, 4698, 0]"]
|
||||
48[Wall]
|
||||
49[Wall]
|
||||
50[Wall]
|
||||
@ -123,14 +123,14 @@ flowchart LR
|
||||
111["SweepEdge Adjacent"]
|
||||
112["SweepEdge Adjacent"]
|
||||
113["SweepEdge Adjacent"]
|
||||
114["EdgeCut Fillet<br>[2588, 2818, 0]"]
|
||||
115["EdgeCut Fillet<br>[2588, 2818, 0]"]
|
||||
116["EdgeCut Fillet<br>[2588, 2818, 0]"]
|
||||
117["EdgeCut Fillet<br>[2588, 2818, 0]"]
|
||||
118["EdgeCut Fillet<br>[4686, 4919, 0]"]
|
||||
119["EdgeCut Fillet<br>[4686, 4919, 0]"]
|
||||
120["EdgeCut Fillet<br>[4686, 4919, 0]"]
|
||||
121["EdgeCut Fillet<br>[4686, 4919, 0]"]
|
||||
114["EdgeCut Fillet<br>[2606, 2836, 0]"]
|
||||
115["EdgeCut Fillet<br>[2606, 2836, 0]"]
|
||||
116["EdgeCut Fillet<br>[2606, 2836, 0]"]
|
||||
117["EdgeCut Fillet<br>[2606, 2836, 0]"]
|
||||
118["EdgeCut Fillet<br>[4704, 4937, 0]"]
|
||||
119["EdgeCut Fillet<br>[4704, 4937, 0]"]
|
||||
120["EdgeCut Fillet<br>[4704, 4937, 0]"]
|
||||
121["EdgeCut Fillet<br>[4704, 4937, 0]"]
|
||||
1 <--x 6
|
||||
1 --- 10
|
||||
2 <--x 7
|
||||
|
||||
@ -6370,6 +6370,31 @@ description: Result of parsing gridfinity-bins.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,22 +1,22 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path2 [Path]
|
||||
2["Path<br>[572, 622, 0]"]
|
||||
4["Segment<br>[630, 672, 0]"]
|
||||
5["Segment<br>[680, 722, 0]"]
|
||||
6["Segment<br>[730, 772, 0]"]
|
||||
7["Segment<br>[780, 821, 0]"]
|
||||
8["Segment<br>[829, 875, 0]"]
|
||||
9["Segment<br>[883, 890, 0]"]
|
||||
2["Path<br>[590, 640, 0]"]
|
||||
4["Segment<br>[648, 690, 0]"]
|
||||
5["Segment<br>[698, 740, 0]"]
|
||||
6["Segment<br>[748, 790, 0]"]
|
||||
7["Segment<br>[798, 839, 0]"]
|
||||
8["Segment<br>[847, 893, 0]"]
|
||||
9["Segment<br>[901, 908, 0]"]
|
||||
11[Solid2d]
|
||||
end
|
||||
subgraph path3 [Path]
|
||||
3["Path<br>[916, 976, 0]"]
|
||||
10["Segment<br>[916, 976, 0]"]
|
||||
3["Path<br>[934, 994, 0]"]
|
||||
10["Segment<br>[934, 994, 0]"]
|
||||
12[Solid2d]
|
||||
end
|
||||
1["Plane<br>[546, 564, 0]"]
|
||||
13["Sweep Extrusion<br>[985, 1006, 0]"]
|
||||
1["Plane<br>[564, 582, 0]"]
|
||||
13["Sweep Extrusion<br>[1003, 1024, 0]"]
|
||||
14[Wall]
|
||||
15[Wall]
|
||||
16[Wall]
|
||||
|
||||
@ -1224,6 +1224,31 @@ description: Result of parsing hex-nut.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,15 +1,15 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path2 [Path]
|
||||
2["Path<br>[457, 495, 0]"]
|
||||
3["Segment<br>[501, 532, 0]"]
|
||||
4["Segment<br>[538, 570, 0]"]
|
||||
5["Segment<br>[576, 626, 0]"]
|
||||
6["Segment<br>[632, 678, 0]"]
|
||||
7["Segment<br>[684, 706, 0]"]
|
||||
2["Path<br>[475, 513, 0]"]
|
||||
3["Segment<br>[519, 550, 0]"]
|
||||
4["Segment<br>[556, 588, 0]"]
|
||||
5["Segment<br>[594, 644, 0]"]
|
||||
6["Segment<br>[650, 696, 0]"]
|
||||
7["Segment<br>[702, 724, 0]"]
|
||||
end
|
||||
1["Plane<br>[433, 451, 0]"]
|
||||
8["Sweep Extrusion<br>[760, 788, 0]"]
|
||||
1["Plane<br>[451, 469, 0]"]
|
||||
8["Sweep Extrusion<br>[778, 806, 0]"]
|
||||
1 --- 2
|
||||
2 --- 3
|
||||
2 --- 4
|
||||
|
||||
@ -927,6 +927,31 @@ description: Result of parsing i-beam.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,418 +1,418 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path29 [Path]
|
||||
29["Path<br>[555, 580, 0]"]
|
||||
60["Segment<br>[586, 625, 0]"]
|
||||
61["Segment<br>[631, 707, 0]"]
|
||||
62["Segment<br>[713, 756, 0]"]
|
||||
63["Segment<br>[762, 832, 0]"]
|
||||
64["Segment<br>[838, 845, 0]"]
|
||||
29["Path<br>[573, 598, 0]"]
|
||||
60["Segment<br>[604, 643, 0]"]
|
||||
61["Segment<br>[649, 725, 0]"]
|
||||
62["Segment<br>[731, 774, 0]"]
|
||||
63["Segment<br>[780, 850, 0]"]
|
||||
64["Segment<br>[856, 863, 0]"]
|
||||
304[Solid2d]
|
||||
end
|
||||
subgraph path30 [Path]
|
||||
30["Path<br>[1203, 1257, 0]"]
|
||||
65["Segment<br>[1203, 1257, 0]"]
|
||||
30["Path<br>[1221, 1275, 0]"]
|
||||
65["Segment<br>[1221, 1275, 0]"]
|
||||
315[Solid2d]
|
||||
end
|
||||
subgraph path31 [Path]
|
||||
31["Path<br>[1271, 1324, 0]"]
|
||||
66["Segment<br>[1271, 1324, 0]"]
|
||||
31["Path<br>[1289, 1342, 0]"]
|
||||
66["Segment<br>[1289, 1342, 0]"]
|
||||
298[Solid2d]
|
||||
end
|
||||
subgraph path32 [Path]
|
||||
32["Path<br>[1338, 1398, 0]"]
|
||||
67["Segment<br>[1338, 1398, 0]"]
|
||||
32["Path<br>[1356, 1416, 0]"]
|
||||
67["Segment<br>[1356, 1416, 0]"]
|
||||
311[Solid2d]
|
||||
end
|
||||
subgraph path33 [Path]
|
||||
33["Path<br>[1412, 1471, 0]"]
|
||||
68["Segment<br>[1412, 1471, 0]"]
|
||||
33["Path<br>[1430, 1489, 0]"]
|
||||
68["Segment<br>[1430, 1489, 0]"]
|
||||
302[Solid2d]
|
||||
end
|
||||
subgraph path34 [Path]
|
||||
34["Path<br>[1985, 2047, 0]"]
|
||||
70["Segment<br>[2055, 2106, 0]"]
|
||||
98["Segment<br>[2114, 2188, 0]"]
|
||||
130["Segment<br>[2196, 2235, 0]"]
|
||||
144["Segment<br>[2243, 2350, 0]"]
|
||||
157["Segment<br>[2358, 2397, 0]"]
|
||||
192["Segment<br>[2405, 2522, 0]"]
|
||||
206["Segment<br>[2530, 2569, 0]"]
|
||||
234["Segment<br>[2577, 2662, 0]"]
|
||||
257["Segment<br>[2670, 2677, 0]"]
|
||||
34["Path<br>[2003, 2065, 0]"]
|
||||
70["Segment<br>[2073, 2124, 0]"]
|
||||
98["Segment<br>[2132, 2206, 0]"]
|
||||
130["Segment<br>[2214, 2253, 0]"]
|
||||
144["Segment<br>[2261, 2368, 0]"]
|
||||
157["Segment<br>[2376, 2415, 0]"]
|
||||
192["Segment<br>[2423, 2540, 0]"]
|
||||
206["Segment<br>[2548, 2587, 0]"]
|
||||
234["Segment<br>[2595, 2680, 0]"]
|
||||
257["Segment<br>[2688, 2695, 0]"]
|
||||
290[Solid2d]
|
||||
end
|
||||
subgraph path35 [Path]
|
||||
35["Path<br>[1985, 2047, 0]"]
|
||||
74["Segment<br>[2055, 2106, 0]"]
|
||||
100["Segment<br>[2114, 2188, 0]"]
|
||||
131["Segment<br>[2196, 2235, 0]"]
|
||||
148["Segment<br>[2243, 2350, 0]"]
|
||||
173["Segment<br>[2358, 2397, 0]"]
|
||||
184["Segment<br>[2405, 2522, 0]"]
|
||||
205["Segment<br>[2530, 2569, 0]"]
|
||||
236["Segment<br>[2577, 2662, 0]"]
|
||||
239["Segment<br>[2670, 2677, 0]"]
|
||||
35["Path<br>[2003, 2065, 0]"]
|
||||
74["Segment<br>[2073, 2124, 0]"]
|
||||
100["Segment<br>[2132, 2206, 0]"]
|
||||
131["Segment<br>[2214, 2253, 0]"]
|
||||
148["Segment<br>[2261, 2368, 0]"]
|
||||
173["Segment<br>[2376, 2415, 0]"]
|
||||
184["Segment<br>[2423, 2540, 0]"]
|
||||
205["Segment<br>[2548, 2587, 0]"]
|
||||
236["Segment<br>[2595, 2680, 0]"]
|
||||
239["Segment<br>[2688, 2695, 0]"]
|
||||
291[Solid2d]
|
||||
end
|
||||
subgraph path36 [Path]
|
||||
36["Path<br>[1985, 2047, 0]"]
|
||||
73["Segment<br>[2055, 2106, 0]"]
|
||||
102["Segment<br>[2114, 2188, 0]"]
|
||||
124["Segment<br>[2196, 2235, 0]"]
|
||||
136["Segment<br>[2243, 2350, 0]"]
|
||||
168["Segment<br>[2358, 2397, 0]"]
|
||||
180["Segment<br>[2405, 2522, 0]"]
|
||||
213["Segment<br>[2530, 2569, 0]"]
|
||||
225["Segment<br>[2577, 2662, 0]"]
|
||||
237["Segment<br>[2670, 2677, 0]"]
|
||||
36["Path<br>[2003, 2065, 0]"]
|
||||
73["Segment<br>[2073, 2124, 0]"]
|
||||
102["Segment<br>[2132, 2206, 0]"]
|
||||
124["Segment<br>[2214, 2253, 0]"]
|
||||
136["Segment<br>[2261, 2368, 0]"]
|
||||
168["Segment<br>[2376, 2415, 0]"]
|
||||
180["Segment<br>[2423, 2540, 0]"]
|
||||
213["Segment<br>[2548, 2587, 0]"]
|
||||
225["Segment<br>[2595, 2680, 0]"]
|
||||
237["Segment<br>[2688, 2695, 0]"]
|
||||
292[Solid2d]
|
||||
end
|
||||
subgraph path37 [Path]
|
||||
37["Path<br>[1985, 2047, 0]"]
|
||||
86["Segment<br>[2055, 2106, 0]"]
|
||||
106["Segment<br>[2114, 2188, 0]"]
|
||||
115["Segment<br>[2196, 2235, 0]"]
|
||||
137["Segment<br>[2243, 2350, 0]"]
|
||||
163["Segment<br>[2358, 2397, 0]"]
|
||||
178["Segment<br>[2405, 2522, 0]"]
|
||||
215["Segment<br>[2530, 2569, 0]"]
|
||||
228["Segment<br>[2577, 2662, 0]"]
|
||||
240["Segment<br>[2670, 2677, 0]"]
|
||||
37["Path<br>[2003, 2065, 0]"]
|
||||
86["Segment<br>[2073, 2124, 0]"]
|
||||
106["Segment<br>[2132, 2206, 0]"]
|
||||
115["Segment<br>[2214, 2253, 0]"]
|
||||
137["Segment<br>[2261, 2368, 0]"]
|
||||
163["Segment<br>[2376, 2415, 0]"]
|
||||
178["Segment<br>[2423, 2540, 0]"]
|
||||
215["Segment<br>[2548, 2587, 0]"]
|
||||
228["Segment<br>[2595, 2680, 0]"]
|
||||
240["Segment<br>[2688, 2695, 0]"]
|
||||
293[Solid2d]
|
||||
end
|
||||
subgraph path38 [Path]
|
||||
38["Path<br>[1985, 2047, 0]"]
|
||||
69["Segment<br>[2055, 2106, 0]"]
|
||||
101["Segment<br>[2114, 2188, 0]"]
|
||||
128["Segment<br>[2196, 2235, 0]"]
|
||||
140["Segment<br>[2243, 2350, 0]"]
|
||||
166["Segment<br>[2358, 2397, 0]"]
|
||||
189["Segment<br>[2405, 2522, 0]"]
|
||||
203["Segment<br>[2530, 2569, 0]"]
|
||||
230["Segment<br>[2577, 2662, 0]"]
|
||||
253["Segment<br>[2670, 2677, 0]"]
|
||||
38["Path<br>[2003, 2065, 0]"]
|
||||
69["Segment<br>[2073, 2124, 0]"]
|
||||
101["Segment<br>[2132, 2206, 0]"]
|
||||
128["Segment<br>[2214, 2253, 0]"]
|
||||
140["Segment<br>[2261, 2368, 0]"]
|
||||
166["Segment<br>[2376, 2415, 0]"]
|
||||
189["Segment<br>[2423, 2540, 0]"]
|
||||
203["Segment<br>[2548, 2587, 0]"]
|
||||
230["Segment<br>[2595, 2680, 0]"]
|
||||
253["Segment<br>[2688, 2695, 0]"]
|
||||
295[Solid2d]
|
||||
end
|
||||
subgraph path39 [Path]
|
||||
39["Path<br>[1985, 2047, 0]"]
|
||||
72["Segment<br>[2055, 2106, 0]"]
|
||||
105["Segment<br>[2114, 2188, 0]"]
|
||||
114["Segment<br>[2196, 2235, 0]"]
|
||||
152["Segment<br>[2243, 2350, 0]"]
|
||||
153["Segment<br>[2358, 2397, 0]"]
|
||||
175["Segment<br>[2405, 2522, 0]"]
|
||||
211["Segment<br>[2530, 2569, 0]"]
|
||||
232["Segment<br>[2577, 2662, 0]"]
|
||||
252["Segment<br>[2670, 2677, 0]"]
|
||||
39["Path<br>[2003, 2065, 0]"]
|
||||
72["Segment<br>[2073, 2124, 0]"]
|
||||
105["Segment<br>[2132, 2206, 0]"]
|
||||
114["Segment<br>[2214, 2253, 0]"]
|
||||
152["Segment<br>[2261, 2368, 0]"]
|
||||
153["Segment<br>[2376, 2415, 0]"]
|
||||
175["Segment<br>[2423, 2540, 0]"]
|
||||
211["Segment<br>[2548, 2587, 0]"]
|
||||
232["Segment<br>[2595, 2680, 0]"]
|
||||
252["Segment<br>[2688, 2695, 0]"]
|
||||
296[Solid2d]
|
||||
end
|
||||
subgraph path40 [Path]
|
||||
40["Path<br>[1985, 2047, 0]"]
|
||||
71["Segment<br>[2055, 2106, 0]"]
|
||||
107["Segment<br>[2114, 2188, 0]"]
|
||||
129["Segment<br>[2196, 2235, 0]"]
|
||||
145["Segment<br>[2243, 2350, 0]"]
|
||||
154["Segment<br>[2358, 2397, 0]"]
|
||||
188["Segment<br>[2405, 2522, 0]"]
|
||||
208["Segment<br>[2530, 2569, 0]"]
|
||||
226["Segment<br>[2577, 2662, 0]"]
|
||||
250["Segment<br>[2670, 2677, 0]"]
|
||||
40["Path<br>[2003, 2065, 0]"]
|
||||
71["Segment<br>[2073, 2124, 0]"]
|
||||
107["Segment<br>[2132, 2206, 0]"]
|
||||
129["Segment<br>[2214, 2253, 0]"]
|
||||
145["Segment<br>[2261, 2368, 0]"]
|
||||
154["Segment<br>[2376, 2415, 0]"]
|
||||
188["Segment<br>[2423, 2540, 0]"]
|
||||
208["Segment<br>[2548, 2587, 0]"]
|
||||
226["Segment<br>[2595, 2680, 0]"]
|
||||
250["Segment<br>[2688, 2695, 0]"]
|
||||
297[Solid2d]
|
||||
end
|
||||
subgraph path41 [Path]
|
||||
41["Path<br>[1985, 2047, 0]"]
|
||||
89["Segment<br>[2055, 2106, 0]"]
|
||||
109["Segment<br>[2114, 2188, 0]"]
|
||||
118["Segment<br>[2196, 2235, 0]"]
|
||||
151["Segment<br>[2243, 2350, 0]"]
|
||||
159["Segment<br>[2358, 2397, 0]"]
|
||||
186["Segment<br>[2405, 2522, 0]"]
|
||||
209["Segment<br>[2530, 2569, 0]"]
|
||||
217["Segment<br>[2577, 2662, 0]"]
|
||||
242["Segment<br>[2670, 2677, 0]"]
|
||||
41["Path<br>[2003, 2065, 0]"]
|
||||
89["Segment<br>[2073, 2124, 0]"]
|
||||
109["Segment<br>[2132, 2206, 0]"]
|
||||
118["Segment<br>[2214, 2253, 0]"]
|
||||
151["Segment<br>[2261, 2368, 0]"]
|
||||
159["Segment<br>[2376, 2415, 0]"]
|
||||
186["Segment<br>[2423, 2540, 0]"]
|
||||
209["Segment<br>[2548, 2587, 0]"]
|
||||
217["Segment<br>[2595, 2680, 0]"]
|
||||
242["Segment<br>[2688, 2695, 0]"]
|
||||
300[Solid2d]
|
||||
end
|
||||
subgraph path42 [Path]
|
||||
42["Path<br>[1985, 2047, 0]"]
|
||||
77["Segment<br>[2055, 2106, 0]"]
|
||||
96["Segment<br>[2114, 2188, 0]"]
|
||||
120["Segment<br>[2196, 2235, 0]"]
|
||||
138["Segment<br>[2243, 2350, 0]"]
|
||||
165["Segment<br>[2358, 2397, 0]"]
|
||||
182["Segment<br>[2405, 2522, 0]"]
|
||||
214["Segment<br>[2530, 2569, 0]"]
|
||||
222["Segment<br>[2577, 2662, 0]"]
|
||||
251["Segment<br>[2670, 2677, 0]"]
|
||||
42["Path<br>[2003, 2065, 0]"]
|
||||
77["Segment<br>[2073, 2124, 0]"]
|
||||
96["Segment<br>[2132, 2206, 0]"]
|
||||
120["Segment<br>[2214, 2253, 0]"]
|
||||
138["Segment<br>[2261, 2368, 0]"]
|
||||
165["Segment<br>[2376, 2415, 0]"]
|
||||
182["Segment<br>[2423, 2540, 0]"]
|
||||
214["Segment<br>[2548, 2587, 0]"]
|
||||
222["Segment<br>[2595, 2680, 0]"]
|
||||
251["Segment<br>[2688, 2695, 0]"]
|
||||
301[Solid2d]
|
||||
end
|
||||
subgraph path43 [Path]
|
||||
43["Path<br>[1985, 2047, 0]"]
|
||||
88["Segment<br>[2055, 2106, 0]"]
|
||||
92["Segment<br>[2114, 2188, 0]"]
|
||||
111["Segment<br>[2196, 2235, 0]"]
|
||||
150["Segment<br>[2243, 2350, 0]"]
|
||||
170["Segment<br>[2358, 2397, 0]"]
|
||||
191["Segment<br>[2405, 2522, 0]"]
|
||||
207["Segment<br>[2530, 2569, 0]"]
|
||||
229["Segment<br>[2577, 2662, 0]"]
|
||||
254["Segment<br>[2670, 2677, 0]"]
|
||||
43["Path<br>[2003, 2065, 0]"]
|
||||
88["Segment<br>[2073, 2124, 0]"]
|
||||
92["Segment<br>[2132, 2206, 0]"]
|
||||
111["Segment<br>[2214, 2253, 0]"]
|
||||
150["Segment<br>[2261, 2368, 0]"]
|
||||
170["Segment<br>[2376, 2415, 0]"]
|
||||
191["Segment<br>[2423, 2540, 0]"]
|
||||
207["Segment<br>[2548, 2587, 0]"]
|
||||
229["Segment<br>[2595, 2680, 0]"]
|
||||
254["Segment<br>[2688, 2695, 0]"]
|
||||
303[Solid2d]
|
||||
end
|
||||
subgraph path44 [Path]
|
||||
44["Path<br>[1985, 2047, 0]"]
|
||||
76["Segment<br>[2055, 2106, 0]"]
|
||||
95["Segment<br>[2114, 2188, 0]"]
|
||||
123["Segment<br>[2196, 2235, 0]"]
|
||||
141["Segment<br>[2243, 2350, 0]"]
|
||||
160["Segment<br>[2358, 2397, 0]"]
|
||||
176["Segment<br>[2405, 2522, 0]"]
|
||||
197["Segment<br>[2530, 2569, 0]"]
|
||||
218["Segment<br>[2577, 2662, 0]"]
|
||||
241["Segment<br>[2670, 2677, 0]"]
|
||||
44["Path<br>[2003, 2065, 0]"]
|
||||
76["Segment<br>[2073, 2124, 0]"]
|
||||
95["Segment<br>[2132, 2206, 0]"]
|
||||
123["Segment<br>[2214, 2253, 0]"]
|
||||
141["Segment<br>[2261, 2368, 0]"]
|
||||
160["Segment<br>[2376, 2415, 0]"]
|
||||
176["Segment<br>[2423, 2540, 0]"]
|
||||
197["Segment<br>[2548, 2587, 0]"]
|
||||
218["Segment<br>[2595, 2680, 0]"]
|
||||
241["Segment<br>[2688, 2695, 0]"]
|
||||
305[Solid2d]
|
||||
end
|
||||
subgraph path45 [Path]
|
||||
45["Path<br>[1985, 2047, 0]"]
|
||||
81["Segment<br>[2055, 2106, 0]"]
|
||||
97["Segment<br>[2114, 2188, 0]"]
|
||||
119["Segment<br>[2196, 2235, 0]"]
|
||||
134["Segment<br>[2243, 2350, 0]"]
|
||||
158["Segment<br>[2358, 2397, 0]"]
|
||||
177["Segment<br>[2405, 2522, 0]"]
|
||||
195["Segment<br>[2530, 2569, 0]"]
|
||||
216["Segment<br>[2577, 2662, 0]"]
|
||||
243["Segment<br>[2670, 2677, 0]"]
|
||||
45["Path<br>[2003, 2065, 0]"]
|
||||
81["Segment<br>[2073, 2124, 0]"]
|
||||
97["Segment<br>[2132, 2206, 0]"]
|
||||
119["Segment<br>[2214, 2253, 0]"]
|
||||
134["Segment<br>[2261, 2368, 0]"]
|
||||
158["Segment<br>[2376, 2415, 0]"]
|
||||
177["Segment<br>[2423, 2540, 0]"]
|
||||
195["Segment<br>[2548, 2587, 0]"]
|
||||
216["Segment<br>[2595, 2680, 0]"]
|
||||
243["Segment<br>[2688, 2695, 0]"]
|
||||
307[Solid2d]
|
||||
end
|
||||
subgraph path46 [Path]
|
||||
46["Path<br>[1985, 2047, 0]"]
|
||||
83["Segment<br>[2055, 2106, 0]"]
|
||||
104["Segment<br>[2114, 2188, 0]"]
|
||||
121["Segment<br>[2196, 2235, 0]"]
|
||||
133["Segment<br>[2243, 2350, 0]"]
|
||||
167["Segment<br>[2358, 2397, 0]"]
|
||||
183["Segment<br>[2405, 2522, 0]"]
|
||||
200["Segment<br>[2530, 2569, 0]"]
|
||||
219["Segment<br>[2577, 2662, 0]"]
|
||||
248["Segment<br>[2670, 2677, 0]"]
|
||||
46["Path<br>[2003, 2065, 0]"]
|
||||
83["Segment<br>[2073, 2124, 0]"]
|
||||
104["Segment<br>[2132, 2206, 0]"]
|
||||
121["Segment<br>[2214, 2253, 0]"]
|
||||
133["Segment<br>[2261, 2368, 0]"]
|
||||
167["Segment<br>[2376, 2415, 0]"]
|
||||
183["Segment<br>[2423, 2540, 0]"]
|
||||
200["Segment<br>[2548, 2587, 0]"]
|
||||
219["Segment<br>[2595, 2680, 0]"]
|
||||
248["Segment<br>[2688, 2695, 0]"]
|
||||
308[Solid2d]
|
||||
end
|
||||
subgraph path47 [Path]
|
||||
47["Path<br>[1985, 2047, 0]"]
|
||||
82["Segment<br>[2055, 2106, 0]"]
|
||||
99["Segment<br>[2114, 2188, 0]"]
|
||||
112["Segment<br>[2196, 2235, 0]"]
|
||||
132["Segment<br>[2243, 2350, 0]"]
|
||||
156["Segment<br>[2358, 2397, 0]"]
|
||||
190["Segment<br>[2405, 2522, 0]"]
|
||||
210["Segment<br>[2530, 2569, 0]"]
|
||||
227["Segment<br>[2577, 2662, 0]"]
|
||||
249["Segment<br>[2670, 2677, 0]"]
|
||||
47["Path<br>[2003, 2065, 0]"]
|
||||
82["Segment<br>[2073, 2124, 0]"]
|
||||
99["Segment<br>[2132, 2206, 0]"]
|
||||
112["Segment<br>[2214, 2253, 0]"]
|
||||
132["Segment<br>[2261, 2368, 0]"]
|
||||
156["Segment<br>[2376, 2415, 0]"]
|
||||
190["Segment<br>[2423, 2540, 0]"]
|
||||
210["Segment<br>[2548, 2587, 0]"]
|
||||
227["Segment<br>[2595, 2680, 0]"]
|
||||
249["Segment<br>[2688, 2695, 0]"]
|
||||
310[Solid2d]
|
||||
end
|
||||
subgraph path48 [Path]
|
||||
48["Path<br>[1985, 2047, 0]"]
|
||||
78["Segment<br>[2055, 2106, 0]"]
|
||||
93["Segment<br>[2114, 2188, 0]"]
|
||||
125["Segment<br>[2196, 2235, 0]"]
|
||||
143["Segment<br>[2243, 2350, 0]"]
|
||||
169["Segment<br>[2358, 2397, 0]"]
|
||||
185["Segment<br>[2405, 2522, 0]"]
|
||||
202["Segment<br>[2530, 2569, 0]"]
|
||||
231["Segment<br>[2577, 2662, 0]"]
|
||||
244["Segment<br>[2670, 2677, 0]"]
|
||||
48["Path<br>[2003, 2065, 0]"]
|
||||
78["Segment<br>[2073, 2124, 0]"]
|
||||
93["Segment<br>[2132, 2206, 0]"]
|
||||
125["Segment<br>[2214, 2253, 0]"]
|
||||
143["Segment<br>[2261, 2368, 0]"]
|
||||
169["Segment<br>[2376, 2415, 0]"]
|
||||
185["Segment<br>[2423, 2540, 0]"]
|
||||
202["Segment<br>[2548, 2587, 0]"]
|
||||
231["Segment<br>[2595, 2680, 0]"]
|
||||
244["Segment<br>[2688, 2695, 0]"]
|
||||
312[Solid2d]
|
||||
end
|
||||
subgraph path49 [Path]
|
||||
49["Path<br>[1985, 2047, 0]"]
|
||||
79["Segment<br>[2055, 2106, 0]"]
|
||||
91["Segment<br>[2114, 2188, 0]"]
|
||||
122["Segment<br>[2196, 2235, 0]"]
|
||||
147["Segment<br>[2243, 2350, 0]"]
|
||||
162["Segment<br>[2358, 2397, 0]"]
|
||||
181["Segment<br>[2405, 2522, 0]"]
|
||||
201["Segment<br>[2530, 2569, 0]"]
|
||||
220["Segment<br>[2577, 2662, 0]"]
|
||||
256["Segment<br>[2670, 2677, 0]"]
|
||||
49["Path<br>[2003, 2065, 0]"]
|
||||
79["Segment<br>[2073, 2124, 0]"]
|
||||
91["Segment<br>[2132, 2206, 0]"]
|
||||
122["Segment<br>[2214, 2253, 0]"]
|
||||
147["Segment<br>[2261, 2368, 0]"]
|
||||
162["Segment<br>[2376, 2415, 0]"]
|
||||
181["Segment<br>[2423, 2540, 0]"]
|
||||
201["Segment<br>[2548, 2587, 0]"]
|
||||
220["Segment<br>[2595, 2680, 0]"]
|
||||
256["Segment<br>[2688, 2695, 0]"]
|
||||
314[Solid2d]
|
||||
end
|
||||
subgraph path50 [Path]
|
||||
50["Path<br>[1985, 2047, 0]"]
|
||||
75["Segment<br>[2055, 2106, 0]"]
|
||||
103["Segment<br>[2114, 2188, 0]"]
|
||||
127["Segment<br>[2196, 2235, 0]"]
|
||||
135["Segment<br>[2243, 2350, 0]"]
|
||||
172["Segment<br>[2358, 2397, 0]"]
|
||||
193["Segment<br>[2405, 2522, 0]"]
|
||||
199["Segment<br>[2530, 2569, 0]"]
|
||||
235["Segment<br>[2577, 2662, 0]"]
|
||||
255["Segment<br>[2670, 2677, 0]"]
|
||||
50["Path<br>[2003, 2065, 0]"]
|
||||
75["Segment<br>[2073, 2124, 0]"]
|
||||
103["Segment<br>[2132, 2206, 0]"]
|
||||
127["Segment<br>[2214, 2253, 0]"]
|
||||
135["Segment<br>[2261, 2368, 0]"]
|
||||
172["Segment<br>[2376, 2415, 0]"]
|
||||
193["Segment<br>[2423, 2540, 0]"]
|
||||
199["Segment<br>[2548, 2587, 0]"]
|
||||
235["Segment<br>[2595, 2680, 0]"]
|
||||
255["Segment<br>[2688, 2695, 0]"]
|
||||
316[Solid2d]
|
||||
end
|
||||
subgraph path51 [Path]
|
||||
51["Path<br>[1985, 2047, 0]"]
|
||||
85["Segment<br>[2055, 2106, 0]"]
|
||||
110["Segment<br>[2114, 2188, 0]"]
|
||||
113["Segment<br>[2196, 2235, 0]"]
|
||||
142["Segment<br>[2243, 2350, 0]"]
|
||||
164["Segment<br>[2358, 2397, 0]"]
|
||||
174["Segment<br>[2405, 2522, 0]"]
|
||||
196["Segment<br>[2530, 2569, 0]"]
|
||||
221["Segment<br>[2577, 2662, 0]"]
|
||||
247["Segment<br>[2670, 2677, 0]"]
|
||||
51["Path<br>[2003, 2065, 0]"]
|
||||
85["Segment<br>[2073, 2124, 0]"]
|
||||
110["Segment<br>[2132, 2206, 0]"]
|
||||
113["Segment<br>[2214, 2253, 0]"]
|
||||
142["Segment<br>[2261, 2368, 0]"]
|
||||
164["Segment<br>[2376, 2415, 0]"]
|
||||
174["Segment<br>[2423, 2540, 0]"]
|
||||
196["Segment<br>[2548, 2587, 0]"]
|
||||
221["Segment<br>[2595, 2680, 0]"]
|
||||
247["Segment<br>[2688, 2695, 0]"]
|
||||
317[Solid2d]
|
||||
end
|
||||
subgraph path52 [Path]
|
||||
52["Path<br>[1985, 2047, 0]"]
|
||||
87["Segment<br>[2055, 2106, 0]"]
|
||||
90["Segment<br>[2114, 2188, 0]"]
|
||||
117["Segment<br>[2196, 2235, 0]"]
|
||||
149["Segment<br>[2243, 2350, 0]"]
|
||||
155["Segment<br>[2358, 2397, 0]"]
|
||||
187["Segment<br>[2405, 2522, 0]"]
|
||||
212["Segment<br>[2530, 2569, 0]"]
|
||||
233["Segment<br>[2577, 2662, 0]"]
|
||||
246["Segment<br>[2670, 2677, 0]"]
|
||||
52["Path<br>[2003, 2065, 0]"]
|
||||
87["Segment<br>[2073, 2124, 0]"]
|
||||
90["Segment<br>[2132, 2206, 0]"]
|
||||
117["Segment<br>[2214, 2253, 0]"]
|
||||
149["Segment<br>[2261, 2368, 0]"]
|
||||
155["Segment<br>[2376, 2415, 0]"]
|
||||
187["Segment<br>[2423, 2540, 0]"]
|
||||
212["Segment<br>[2548, 2587, 0]"]
|
||||
233["Segment<br>[2595, 2680, 0]"]
|
||||
246["Segment<br>[2688, 2695, 0]"]
|
||||
318[Solid2d]
|
||||
end
|
||||
subgraph path53 [Path]
|
||||
53["Path<br>[1985, 2047, 0]"]
|
||||
80["Segment<br>[2055, 2106, 0]"]
|
||||
94["Segment<br>[2114, 2188, 0]"]
|
||||
126["Segment<br>[2196, 2235, 0]"]
|
||||
146["Segment<br>[2243, 2350, 0]"]
|
||||
161["Segment<br>[2358, 2397, 0]"]
|
||||
179["Segment<br>[2405, 2522, 0]"]
|
||||
198["Segment<br>[2530, 2569, 0]"]
|
||||
224["Segment<br>[2577, 2662, 0]"]
|
||||
245["Segment<br>[2670, 2677, 0]"]
|
||||
53["Path<br>[2003, 2065, 0]"]
|
||||
80["Segment<br>[2073, 2124, 0]"]
|
||||
94["Segment<br>[2132, 2206, 0]"]
|
||||
126["Segment<br>[2214, 2253, 0]"]
|
||||
146["Segment<br>[2261, 2368, 0]"]
|
||||
161["Segment<br>[2376, 2415, 0]"]
|
||||
179["Segment<br>[2423, 2540, 0]"]
|
||||
198["Segment<br>[2548, 2587, 0]"]
|
||||
224["Segment<br>[2595, 2680, 0]"]
|
||||
245["Segment<br>[2688, 2695, 0]"]
|
||||
319[Solid2d]
|
||||
end
|
||||
subgraph path54 [Path]
|
||||
54["Path<br>[1985, 2047, 0]"]
|
||||
84["Segment<br>[2055, 2106, 0]"]
|
||||
108["Segment<br>[2114, 2188, 0]"]
|
||||
116["Segment<br>[2196, 2235, 0]"]
|
||||
139["Segment<br>[2243, 2350, 0]"]
|
||||
171["Segment<br>[2358, 2397, 0]"]
|
||||
194["Segment<br>[2405, 2522, 0]"]
|
||||
204["Segment<br>[2530, 2569, 0]"]
|
||||
223["Segment<br>[2577, 2662, 0]"]
|
||||
238["Segment<br>[2670, 2677, 0]"]
|
||||
54["Path<br>[2003, 2065, 0]"]
|
||||
84["Segment<br>[2073, 2124, 0]"]
|
||||
108["Segment<br>[2132, 2206, 0]"]
|
||||
116["Segment<br>[2214, 2253, 0]"]
|
||||
139["Segment<br>[2261, 2368, 0]"]
|
||||
171["Segment<br>[2376, 2415, 0]"]
|
||||
194["Segment<br>[2423, 2540, 0]"]
|
||||
204["Segment<br>[2548, 2587, 0]"]
|
||||
223["Segment<br>[2595, 2680, 0]"]
|
||||
238["Segment<br>[2688, 2695, 0]"]
|
||||
320[Solid2d]
|
||||
end
|
||||
subgraph path55 [Path]
|
||||
55["Path<br>[6329, 6416, 0]"]
|
||||
258["Segment<br>[6424, 6453, 0]"]
|
||||
259["Segment<br>[6461, 6489, 0]"]
|
||||
260["Segment<br>[6497, 6575, 0]"]
|
||||
261["Segment<br>[6583, 6630, 0]"]
|
||||
262["Segment<br>[6638, 6666, 0]"]
|
||||
263["Segment<br>[6674, 6703, 0]"]
|
||||
264["Segment<br>[6711, 6740, 0]"]
|
||||
265["Segment<br>[6748, 6814, 0]"]
|
||||
266["Segment<br>[6822, 6850, 0]"]
|
||||
267["Segment<br>[6858, 6887, 0]"]
|
||||
268["Segment<br>[6895, 6957, 0]"]
|
||||
269["Segment<br>[6965, 6993, 0]"]
|
||||
270["Segment<br>[7001, 7035, 0]"]
|
||||
271["Segment<br>[7043, 7073, 0]"]
|
||||
272["Segment<br>[7081, 7149, 0]"]
|
||||
273["Segment<br>[7157, 7164, 0]"]
|
||||
55["Path<br>[6347, 6434, 0]"]
|
||||
258["Segment<br>[6442, 6471, 0]"]
|
||||
259["Segment<br>[6479, 6507, 0]"]
|
||||
260["Segment<br>[6515, 6593, 0]"]
|
||||
261["Segment<br>[6601, 6648, 0]"]
|
||||
262["Segment<br>[6656, 6684, 0]"]
|
||||
263["Segment<br>[6692, 6721, 0]"]
|
||||
264["Segment<br>[6729, 6758, 0]"]
|
||||
265["Segment<br>[6766, 6832, 0]"]
|
||||
266["Segment<br>[6840, 6868, 0]"]
|
||||
267["Segment<br>[6876, 6905, 0]"]
|
||||
268["Segment<br>[6913, 6975, 0]"]
|
||||
269["Segment<br>[6983, 7011, 0]"]
|
||||
270["Segment<br>[7019, 7053, 0]"]
|
||||
271["Segment<br>[7061, 7091, 0]"]
|
||||
272["Segment<br>[7099, 7167, 0]"]
|
||||
273["Segment<br>[7175, 7182, 0]"]
|
||||
294[Solid2d]
|
||||
end
|
||||
subgraph path56 [Path]
|
||||
56["Path<br>[7364, 7462, 0]"]
|
||||
274["Segment<br>[7470, 7548, 0]"]
|
||||
276["Segment<br>[7556, 7603, 0]"]
|
||||
279["Segment<br>[7611, 7691, 0]"]
|
||||
281["Segment<br>[7699, 7706, 0]"]
|
||||
56["Path<br>[7382, 7480, 0]"]
|
||||
274["Segment<br>[7488, 7566, 0]"]
|
||||
276["Segment<br>[7574, 7621, 0]"]
|
||||
279["Segment<br>[7629, 7709, 0]"]
|
||||
281["Segment<br>[7717, 7724, 0]"]
|
||||
299[Solid2d]
|
||||
end
|
||||
subgraph path57 [Path]
|
||||
57["Path<br>[7364, 7462, 0]"]
|
||||
275["Segment<br>[7470, 7548, 0]"]
|
||||
277["Segment<br>[7556, 7603, 0]"]
|
||||
278["Segment<br>[7611, 7691, 0]"]
|
||||
280["Segment<br>[7699, 7706, 0]"]
|
||||
57["Path<br>[7382, 7480, 0]"]
|
||||
275["Segment<br>[7488, 7566, 0]"]
|
||||
277["Segment<br>[7574, 7621, 0]"]
|
||||
278["Segment<br>[7629, 7709, 0]"]
|
||||
280["Segment<br>[7717, 7724, 0]"]
|
||||
313[Solid2d]
|
||||
end
|
||||
subgraph path58 [Path]
|
||||
58["Path<br>[7814, 7911, 0]"]
|
||||
282["Segment<br>[7919, 7997, 0]"]
|
||||
285["Segment<br>[8005, 8053, 0]"]
|
||||
287["Segment<br>[8061, 8141, 0]"]
|
||||
289["Segment<br>[8149, 8156, 0]"]
|
||||
58["Path<br>[7832, 7929, 0]"]
|
||||
282["Segment<br>[7937, 8015, 0]"]
|
||||
285["Segment<br>[8023, 8071, 0]"]
|
||||
287["Segment<br>[8079, 8159, 0]"]
|
||||
289["Segment<br>[8167, 8174, 0]"]
|
||||
306[Solid2d]
|
||||
end
|
||||
subgraph path59 [Path]
|
||||
59["Path<br>[7814, 7911, 0]"]
|
||||
283["Segment<br>[7919, 7997, 0]"]
|
||||
284["Segment<br>[8005, 8053, 0]"]
|
||||
286["Segment<br>[8061, 8141, 0]"]
|
||||
288["Segment<br>[8149, 8156, 0]"]
|
||||
59["Path<br>[7832, 7929, 0]"]
|
||||
283["Segment<br>[7937, 8015, 0]"]
|
||||
284["Segment<br>[8023, 8071, 0]"]
|
||||
286["Segment<br>[8079, 8159, 0]"]
|
||||
288["Segment<br>[8167, 8174, 0]"]
|
||||
309[Solid2d]
|
||||
end
|
||||
1["Plane<br>[532, 549, 0]"]
|
||||
2["Plane<br>[1946, 1969, 0]"]
|
||||
3["Plane<br>[1946, 1969, 0]"]
|
||||
4["Plane<br>[1946, 1969, 0]"]
|
||||
5["Plane<br>[1946, 1969, 0]"]
|
||||
6["Plane<br>[1946, 1969, 0]"]
|
||||
7["Plane<br>[1946, 1969, 0]"]
|
||||
8["Plane<br>[1946, 1969, 0]"]
|
||||
9["Plane<br>[1946, 1969, 0]"]
|
||||
10["Plane<br>[1946, 1969, 0]"]
|
||||
11["Plane<br>[1946, 1969, 0]"]
|
||||
12["Plane<br>[1946, 1969, 0]"]
|
||||
13["Plane<br>[1946, 1969, 0]"]
|
||||
14["Plane<br>[1946, 1969, 0]"]
|
||||
15["Plane<br>[1946, 1969, 0]"]
|
||||
16["Plane<br>[1946, 1969, 0]"]
|
||||
17["Plane<br>[1946, 1969, 0]"]
|
||||
18["Plane<br>[1946, 1969, 0]"]
|
||||
19["Plane<br>[1946, 1969, 0]"]
|
||||
20["Plane<br>[1946, 1969, 0]"]
|
||||
21["Plane<br>[1946, 1969, 0]"]
|
||||
22["Plane<br>[1946, 1969, 0]"]
|
||||
23["Plane<br>[6298, 6321, 0]"]
|
||||
24["Plane<br>[7333, 7356, 0]"]
|
||||
25["Plane<br>[7333, 7356, 0]"]
|
||||
26["Plane<br>[7783, 7806, 0]"]
|
||||
27["Plane<br>[7783, 7806, 0]"]
|
||||
28["StartSketchOnFace<br>[1151, 1189, 0]"]
|
||||
321["Sweep Extrusion<br>[851, 873, 0]"]
|
||||
322["Sweep Extrusion<br>[1472, 1570, 0]"]
|
||||
323["Sweep Extrusion<br>[1472, 1570, 0]"]
|
||||
324["Sweep Extrusion<br>[1472, 1570, 0]"]
|
||||
325["Sweep Extrusion<br>[1472, 1570, 0]"]
|
||||
326["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
327["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
328["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
329["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
330["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
331["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
332["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
333["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
334["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
335["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
336["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
337["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
338["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
339["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
340["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
341["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
342["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
343["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
344["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
345["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
346["Sweep Extrusion<br>[2685, 2711, 0]"]
|
||||
347["Sweep Extrusion<br>[7172, 7196, 0]"]
|
||||
348["Sweep Extrusion<br>[7714, 7738, 0]"]
|
||||
349["Sweep Extrusion<br>[7714, 7738, 0]"]
|
||||
350["Sweep Extrusion<br>[8164, 8188, 0]"]
|
||||
351["Sweep Extrusion<br>[8164, 8188, 0]"]
|
||||
1["Plane<br>[550, 567, 0]"]
|
||||
2["Plane<br>[1964, 1987, 0]"]
|
||||
3["Plane<br>[1964, 1987, 0]"]
|
||||
4["Plane<br>[1964, 1987, 0]"]
|
||||
5["Plane<br>[1964, 1987, 0]"]
|
||||
6["Plane<br>[1964, 1987, 0]"]
|
||||
7["Plane<br>[1964, 1987, 0]"]
|
||||
8["Plane<br>[1964, 1987, 0]"]
|
||||
9["Plane<br>[1964, 1987, 0]"]
|
||||
10["Plane<br>[1964, 1987, 0]"]
|
||||
11["Plane<br>[1964, 1987, 0]"]
|
||||
12["Plane<br>[1964, 1987, 0]"]
|
||||
13["Plane<br>[1964, 1987, 0]"]
|
||||
14["Plane<br>[1964, 1987, 0]"]
|
||||
15["Plane<br>[1964, 1987, 0]"]
|
||||
16["Plane<br>[1964, 1987, 0]"]
|
||||
17["Plane<br>[1964, 1987, 0]"]
|
||||
18["Plane<br>[1964, 1987, 0]"]
|
||||
19["Plane<br>[1964, 1987, 0]"]
|
||||
20["Plane<br>[1964, 1987, 0]"]
|
||||
21["Plane<br>[1964, 1987, 0]"]
|
||||
22["Plane<br>[1964, 1987, 0]"]
|
||||
23["Plane<br>[6316, 6339, 0]"]
|
||||
24["Plane<br>[7351, 7374, 0]"]
|
||||
25["Plane<br>[7351, 7374, 0]"]
|
||||
26["Plane<br>[7801, 7824, 0]"]
|
||||
27["Plane<br>[7801, 7824, 0]"]
|
||||
28["StartSketchOnFace<br>[1169, 1207, 0]"]
|
||||
321["Sweep Extrusion<br>[869, 891, 0]"]
|
||||
322["Sweep Extrusion<br>[1490, 1588, 0]"]
|
||||
323["Sweep Extrusion<br>[1490, 1588, 0]"]
|
||||
324["Sweep Extrusion<br>[1490, 1588, 0]"]
|
||||
325["Sweep Extrusion<br>[1490, 1588, 0]"]
|
||||
326["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
327["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
328["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
329["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
330["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
331["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
332["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
333["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
334["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
335["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
336["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
337["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
338["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
339["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
340["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
341["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
342["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
343["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
344["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
345["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
346["Sweep Extrusion<br>[2703, 2729, 0]"]
|
||||
347["Sweep Extrusion<br>[7190, 7214, 0]"]
|
||||
348["Sweep Extrusion<br>[7732, 7756, 0]"]
|
||||
349["Sweep Extrusion<br>[7732, 7756, 0]"]
|
||||
350["Sweep Extrusion<br>[8182, 8206, 0]"]
|
||||
351["Sweep Extrusion<br>[8182, 8206, 0]"]
|
||||
352[Wall]
|
||||
353[Wall]
|
||||
354[Wall]
|
||||
@ -1095,10 +1095,10 @@ flowchart LR
|
||||
1031["SweepEdge Adjacent"]
|
||||
1032["SweepEdge Adjacent"]
|
||||
1033["SweepEdge Adjacent"]
|
||||
1034["EdgeCut Fillet<br>[914, 1071, 0]"]
|
||||
1035["EdgeCut Fillet<br>[914, 1071, 0]"]
|
||||
1036["EdgeCut Fillet<br>[914, 1071, 0]"]
|
||||
1037["EdgeCut Fillet<br>[914, 1071, 0]"]
|
||||
1034["EdgeCut Fillet<br>[932, 1089, 0]"]
|
||||
1035["EdgeCut Fillet<br>[932, 1089, 0]"]
|
||||
1036["EdgeCut Fillet<br>[932, 1089, 0]"]
|
||||
1037["EdgeCut Fillet<br>[932, 1089, 0]"]
|
||||
1 --- 29
|
||||
2 --- 36
|
||||
3 --- 44
|
||||
|
||||
@ -13117,6 +13117,31 @@ description: Result of parsing keyboard.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -462,9 +462,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 618,
|
||||
"end": 624,
|
||||
"start": 618,
|
||||
"commentStart": 636,
|
||||
"end": 642,
|
||||
"start": 636,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -475,9 +475,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 700,
|
||||
"end": 706,
|
||||
"start": 700,
|
||||
"commentStart": 718,
|
||||
"end": 724,
|
||||
"start": 718,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -488,9 +488,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 749,
|
||||
"end": 755,
|
||||
"start": 749,
|
||||
"commentStart": 767,
|
||||
"end": 773,
|
||||
"start": 767,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -501,9 +501,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 825,
|
||||
"end": 831,
|
||||
"start": 825,
|
||||
"commentStart": 843,
|
||||
"end": 849,
|
||||
"start": 843,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -524,9 +524,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 618,
|
||||
"end": 624,
|
||||
"start": 618,
|
||||
"commentStart": 636,
|
||||
"end": 642,
|
||||
"start": 636,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -549,9 +549,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.68
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 700,
|
||||
"end": 706,
|
||||
"start": 700,
|
||||
"commentStart": 718,
|
||||
"end": 724,
|
||||
"start": 718,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -574,9 +574,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
1.399
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 749,
|
||||
"end": 755,
|
||||
"start": 749,
|
||||
"commentStart": 767,
|
||||
"end": 773,
|
||||
"start": 767,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -599,9 +599,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 825,
|
||||
"end": 831,
|
||||
"start": 825,
|
||||
"commentStart": 843,
|
||||
"end": 849,
|
||||
"start": 843,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -880,9 +880,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 618,
|
||||
"end": 624,
|
||||
"start": 618,
|
||||
"commentStart": 636,
|
||||
"end": 642,
|
||||
"start": 636,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -893,9 +893,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 700,
|
||||
"end": 706,
|
||||
"start": 700,
|
||||
"commentStart": 718,
|
||||
"end": 724,
|
||||
"start": 718,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -906,9 +906,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 749,
|
||||
"end": 755,
|
||||
"start": 749,
|
||||
"commentStart": 767,
|
||||
"end": 773,
|
||||
"start": 767,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -919,9 +919,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 825,
|
||||
"end": 831,
|
||||
"start": 825,
|
||||
"commentStart": 843,
|
||||
"end": 849,
|
||||
"start": 843,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -942,9 +942,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 618,
|
||||
"end": 624,
|
||||
"start": 618,
|
||||
"commentStart": 636,
|
||||
"end": 642,
|
||||
"start": 636,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -967,9 +967,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.68
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 700,
|
||||
"end": 706,
|
||||
"start": 700,
|
||||
"commentStart": 718,
|
||||
"end": 724,
|
||||
"start": 718,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -992,9 +992,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
1.399
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 749,
|
||||
"end": 755,
|
||||
"start": 749,
|
||||
"commentStart": 767,
|
||||
"end": 773,
|
||||
"start": 767,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -1017,9 +1017,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 825,
|
||||
"end": 831,
|
||||
"start": 825,
|
||||
"commentStart": 843,
|
||||
"end": 849,
|
||||
"start": 843,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -1298,9 +1298,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 618,
|
||||
"end": 624,
|
||||
"start": 618,
|
||||
"commentStart": 636,
|
||||
"end": 642,
|
||||
"start": 636,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -1311,9 +1311,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 700,
|
||||
"end": 706,
|
||||
"start": 700,
|
||||
"commentStart": 718,
|
||||
"end": 724,
|
||||
"start": 718,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -1324,9 +1324,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 749,
|
||||
"end": 755,
|
||||
"start": 749,
|
||||
"commentStart": 767,
|
||||
"end": 773,
|
||||
"start": 767,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -1337,9 +1337,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 825,
|
||||
"end": 831,
|
||||
"start": 825,
|
||||
"commentStart": 843,
|
||||
"end": 849,
|
||||
"start": 843,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -1360,9 +1360,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 618,
|
||||
"end": 624,
|
||||
"start": 618,
|
||||
"commentStart": 636,
|
||||
"end": 642,
|
||||
"start": 636,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -1385,9 +1385,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.68
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 700,
|
||||
"end": 706,
|
||||
"start": 700,
|
||||
"commentStart": 718,
|
||||
"end": 724,
|
||||
"start": 718,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -1410,9 +1410,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
1.399
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 749,
|
||||
"end": 755,
|
||||
"start": 749,
|
||||
"commentStart": 767,
|
||||
"end": 773,
|
||||
"start": 767,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -1435,9 +1435,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 825,
|
||||
"end": 831,
|
||||
"start": 825,
|
||||
"commentStart": 843,
|
||||
"end": 849,
|
||||
"start": 843,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -1716,9 +1716,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 618,
|
||||
"end": 624,
|
||||
"start": 618,
|
||||
"commentStart": 636,
|
||||
"end": 642,
|
||||
"start": 636,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -1729,9 +1729,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 700,
|
||||
"end": 706,
|
||||
"start": 700,
|
||||
"commentStart": 718,
|
||||
"end": 724,
|
||||
"start": 718,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -1742,9 +1742,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 749,
|
||||
"end": 755,
|
||||
"start": 749,
|
||||
"commentStart": 767,
|
||||
"end": 773,
|
||||
"start": 767,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -1755,9 +1755,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 825,
|
||||
"end": 831,
|
||||
"start": 825,
|
||||
"commentStart": 843,
|
||||
"end": 849,
|
||||
"start": 843,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -1778,9 +1778,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 618,
|
||||
"end": 624,
|
||||
"start": 618,
|
||||
"commentStart": 636,
|
||||
"end": 642,
|
||||
"start": 636,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -1803,9 +1803,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.68
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 700,
|
||||
"end": 706,
|
||||
"start": 700,
|
||||
"commentStart": 718,
|
||||
"end": 724,
|
||||
"start": 718,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -1828,9 +1828,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
1.399
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 749,
|
||||
"end": 755,
|
||||
"start": 749,
|
||||
"commentStart": 767,
|
||||
"end": 773,
|
||||
"start": 767,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -1853,9 +1853,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 825,
|
||||
"end": 831,
|
||||
"start": 825,
|
||||
"commentStart": 843,
|
||||
"end": 849,
|
||||
"start": 843,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -2181,9 +2181,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 618,
|
||||
"end": 624,
|
||||
"start": 618,
|
||||
"commentStart": 636,
|
||||
"end": 642,
|
||||
"start": 636,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -2194,9 +2194,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 700,
|
||||
"end": 706,
|
||||
"start": 700,
|
||||
"commentStart": 718,
|
||||
"end": 724,
|
||||
"start": 718,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -2207,9 +2207,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 749,
|
||||
"end": 755,
|
||||
"start": 749,
|
||||
"commentStart": 767,
|
||||
"end": 773,
|
||||
"start": 767,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -2220,9 +2220,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 825,
|
||||
"end": 831,
|
||||
"start": 825,
|
||||
"commentStart": 843,
|
||||
"end": 849,
|
||||
"start": 843,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -2243,9 +2243,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 618,
|
||||
"end": 624,
|
||||
"start": 618,
|
||||
"commentStart": 636,
|
||||
"end": 642,
|
||||
"start": 636,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -2268,9 +2268,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.68
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 700,
|
||||
"end": 706,
|
||||
"start": 700,
|
||||
"commentStart": 718,
|
||||
"end": 724,
|
||||
"start": 718,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -2293,9 +2293,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
1.399
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 749,
|
||||
"end": 755,
|
||||
"start": 749,
|
||||
"commentStart": 767,
|
||||
"end": 773,
|
||||
"start": 767,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -2318,9 +2318,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 825,
|
||||
"end": 831,
|
||||
"start": 825,
|
||||
"commentStart": 843,
|
||||
"end": 849,
|
||||
"start": 843,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -2540,9 +2540,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 618,
|
||||
"end": 624,
|
||||
"start": 618,
|
||||
"commentStart": 636,
|
||||
"end": 642,
|
||||
"start": 636,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -2553,9 +2553,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 700,
|
||||
"end": 706,
|
||||
"start": 700,
|
||||
"commentStart": 718,
|
||||
"end": 724,
|
||||
"start": 718,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -2566,9 +2566,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 749,
|
||||
"end": 755,
|
||||
"start": 749,
|
||||
"commentStart": 767,
|
||||
"end": 773,
|
||||
"start": 767,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -2579,9 +2579,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 825,
|
||||
"end": 831,
|
||||
"start": 825,
|
||||
"commentStart": 843,
|
||||
"end": 849,
|
||||
"start": 843,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -2602,9 +2602,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 618,
|
||||
"end": 624,
|
||||
"start": 618,
|
||||
"commentStart": 636,
|
||||
"end": 642,
|
||||
"start": 636,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -2627,9 +2627,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.68
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 700,
|
||||
"end": 706,
|
||||
"start": 700,
|
||||
"commentStart": 718,
|
||||
"end": 724,
|
||||
"start": 718,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -2652,9 +2652,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
1.399
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 749,
|
||||
"end": 755,
|
||||
"start": 749,
|
||||
"commentStart": 767,
|
||||
"end": 773,
|
||||
"start": 767,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -2677,9 +2677,9 @@ description: Variables in memory after executing keyboard.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 825,
|
||||
"end": 831,
|
||||
"start": 825,
|
||||
"commentStart": 843,
|
||||
"end": 849,
|
||||
"start": 843,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
|
||||
@ -1,45 +1,45 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path5 [Path]
|
||||
5["Path<br>[1019, 1073, 0]"]
|
||||
9["Segment<br>[1079, 1106, 0]"]
|
||||
10["Segment<br>[1112, 1140, 0]"]
|
||||
11["Segment<br>[1146, 1174, 0]"]
|
||||
12["Segment<br>[1180, 1187, 0]"]
|
||||
5["Path<br>[1037, 1091, 0]"]
|
||||
9["Segment<br>[1097, 1124, 0]"]
|
||||
10["Segment<br>[1130, 1158, 0]"]
|
||||
11["Segment<br>[1164, 1192, 0]"]
|
||||
12["Segment<br>[1198, 1205, 0]"]
|
||||
20[Solid2d]
|
||||
end
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[1434, 1521, 0]"]
|
||||
13["Segment<br>[1527, 1564, 0]"]
|
||||
14["Segment<br>[1570, 1608, 0]"]
|
||||
15["Segment<br>[1614, 1654, 0]"]
|
||||
16["Segment<br>[1660, 1667, 0]"]
|
||||
6["Path<br>[1452, 1539, 0]"]
|
||||
13["Segment<br>[1545, 1582, 0]"]
|
||||
14["Segment<br>[1588, 1626, 0]"]
|
||||
15["Segment<br>[1632, 1672, 0]"]
|
||||
16["Segment<br>[1678, 1685, 0]"]
|
||||
19[Solid2d]
|
||||
end
|
||||
subgraph path7 [Path]
|
||||
7["Path<br>[1791, 1938, 0]"]
|
||||
17["Segment<br>[1791, 1938, 0]"]
|
||||
7["Path<br>[1809, 1956, 0]"]
|
||||
17["Segment<br>[1809, 1956, 0]"]
|
||||
21[Solid2d]
|
||||
end
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[2228, 2403, 0]"]
|
||||
18["Segment<br>[2228, 2403, 0]"]
|
||||
8["Path<br>[2246, 2421, 0]"]
|
||||
18["Segment<br>[2246, 2421, 0]"]
|
||||
22[Solid2d]
|
||||
end
|
||||
1["Plane<br>[996, 1013, 0]"]
|
||||
2["StartSketchOnFace<br>[1754, 1785, 0]"]
|
||||
3["StartSketchOnFace<br>[2181, 2222, 0]"]
|
||||
4["StartSketchOnFace<br>[1395, 1428, 0]"]
|
||||
23["Sweep Extrusion<br>[1193, 1217, 0]"]
|
||||
24["Sweep Extrusion<br>[1673, 1704, 0]"]
|
||||
25["Sweep Extrusion<br>[2092, 2120, 0]"]
|
||||
26["Sweep Extrusion<br>[2092, 2120, 0]"]
|
||||
27["Sweep Extrusion<br>[2092, 2120, 0]"]
|
||||
28["Sweep Extrusion<br>[2092, 2120, 0]"]
|
||||
29["Sweep Extrusion<br>[2092, 2120, 0]"]
|
||||
30["Sweep Extrusion<br>[2092, 2120, 0]"]
|
||||
31["Sweep Extrusion<br>[2565, 2593, 0]"]
|
||||
32["Sweep Extrusion<br>[2565, 2593, 0]"]
|
||||
1["Plane<br>[1014, 1031, 0]"]
|
||||
2["StartSketchOnFace<br>[1772, 1803, 0]"]
|
||||
3["StartSketchOnFace<br>[2199, 2240, 0]"]
|
||||
4["StartSketchOnFace<br>[1413, 1446, 0]"]
|
||||
23["Sweep Extrusion<br>[1211, 1235, 0]"]
|
||||
24["Sweep Extrusion<br>[1691, 1722, 0]"]
|
||||
25["Sweep Extrusion<br>[2110, 2138, 0]"]
|
||||
26["Sweep Extrusion<br>[2110, 2138, 0]"]
|
||||
27["Sweep Extrusion<br>[2110, 2138, 0]"]
|
||||
28["Sweep Extrusion<br>[2110, 2138, 0]"]
|
||||
29["Sweep Extrusion<br>[2110, 2138, 0]"]
|
||||
30["Sweep Extrusion<br>[2110, 2138, 0]"]
|
||||
31["Sweep Extrusion<br>[2583, 2611, 0]"]
|
||||
32["Sweep Extrusion<br>[2583, 2611, 0]"]
|
||||
33[Wall]
|
||||
34[Wall]
|
||||
35[Wall]
|
||||
|
||||
@ -3722,6 +3722,31 @@ description: Result of parsing lego.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,93 +1,93 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path19 [Path]
|
||||
19["Path<br>[583, 628, 0]"]
|
||||
33["Segment<br>[583, 628, 0]"]
|
||||
19["Path<br>[601, 646, 0]"]
|
||||
33["Segment<br>[601, 646, 0]"]
|
||||
46[Solid2d]
|
||||
end
|
||||
subgraph path20 [Path]
|
||||
20["Path<br>[583, 628, 0]"]
|
||||
32["Segment<br>[583, 628, 0]"]
|
||||
20["Path<br>[601, 646, 0]"]
|
||||
32["Segment<br>[601, 646, 0]"]
|
||||
48[Solid2d]
|
||||
end
|
||||
subgraph path21 [Path]
|
||||
21["Path<br>[583, 628, 0]"]
|
||||
31["Segment<br>[583, 628, 0]"]
|
||||
21["Path<br>[601, 646, 0]"]
|
||||
31["Segment<br>[601, 646, 0]"]
|
||||
49[Solid2d]
|
||||
end
|
||||
subgraph path22 [Path]
|
||||
22["Path<br>[583, 628, 0]"]
|
||||
34["Segment<br>[583, 628, 0]"]
|
||||
22["Path<br>[601, 646, 0]"]
|
||||
34["Segment<br>[601, 646, 0]"]
|
||||
50[Solid2d]
|
||||
end
|
||||
subgraph path23 [Path]
|
||||
23["Path<br>[583, 628, 0]"]
|
||||
36["Segment<br>[583, 628, 0]"]
|
||||
23["Path<br>[601, 646, 0]"]
|
||||
36["Segment<br>[601, 646, 0]"]
|
||||
51[Solid2d]
|
||||
end
|
||||
subgraph path24 [Path]
|
||||
24["Path<br>[583, 628, 0]"]
|
||||
30["Segment<br>[583, 628, 0]"]
|
||||
24["Path<br>[601, 646, 0]"]
|
||||
30["Segment<br>[601, 646, 0]"]
|
||||
53[Solid2d]
|
||||
end
|
||||
subgraph path25 [Path]
|
||||
25["Path<br>[583, 628, 0]"]
|
||||
35["Segment<br>[583, 628, 0]"]
|
||||
25["Path<br>[601, 646, 0]"]
|
||||
35["Segment<br>[601, 646, 0]"]
|
||||
54[Solid2d]
|
||||
end
|
||||
subgraph path26 [Path]
|
||||
26["Path<br>[1312, 1367, 0]"]
|
||||
38["Segment<br>[1312, 1367, 0]"]
|
||||
26["Path<br>[1330, 1385, 0]"]
|
||||
38["Segment<br>[1330, 1385, 0]"]
|
||||
47[Solid2d]
|
||||
end
|
||||
subgraph path27 [Path]
|
||||
27["Path<br>[1312, 1367, 0]"]
|
||||
37["Segment<br>[1312, 1367, 0]"]
|
||||
27["Path<br>[1330, 1385, 0]"]
|
||||
37["Segment<br>[1330, 1385, 0]"]
|
||||
52[Solid2d]
|
||||
end
|
||||
subgraph path28 [Path]
|
||||
28["Path<br>[1814, 1877, 0]"]
|
||||
39["Segment<br>[1814, 1877, 0]"]
|
||||
28["Path<br>[1832, 1895, 0]"]
|
||||
39["Segment<br>[1832, 1895, 0]"]
|
||||
45[Solid2d]
|
||||
end
|
||||
subgraph path29 [Path]
|
||||
29["Path<br>[1923, 1982, 0]"]
|
||||
40["Segment<br>[1990, 2014, 0]"]
|
||||
41["Segment<br>[2022, 2122, 0]"]
|
||||
42["Segment<br>[2130, 2154, 0]"]
|
||||
43["Segment<br>[2162, 2340, 0]"]
|
||||
44["Segment<br>[2348, 2355, 0]"]
|
||||
29["Path<br>[1941, 2000, 0]"]
|
||||
40["Segment<br>[2008, 2032, 0]"]
|
||||
41["Segment<br>[2040, 2140, 0]"]
|
||||
42["Segment<br>[2148, 2172, 0]"]
|
||||
43["Segment<br>[2180, 2358, 0]"]
|
||||
44["Segment<br>[2366, 2373, 0]"]
|
||||
55[Solid2d]
|
||||
end
|
||||
1["Plane<br>[547, 574, 0]"]
|
||||
2["Plane<br>[547, 574, 0]"]
|
||||
3["Plane<br>[547, 574, 0]"]
|
||||
4["Plane<br>[547, 574, 0]"]
|
||||
5["Plane<br>[547, 574, 0]"]
|
||||
6["Plane<br>[547, 574, 0]"]
|
||||
7["Plane<br>[547, 574, 0]"]
|
||||
8["Plane<br>[1284, 1304, 0]"]
|
||||
9["Plane<br>[1284, 1304, 0]"]
|
||||
10["Plane<br>[1750, 1800, 0]"]
|
||||
11["StartSketchOnPlane<br>[1736, 1801, 0]"]
|
||||
12["StartSketchOnPlane<br>[533, 575, 0]"]
|
||||
13["StartSketchOnPlane<br>[533, 575, 0]"]
|
||||
14["StartSketchOnPlane<br>[533, 575, 0]"]
|
||||
15["StartSketchOnPlane<br>[533, 575, 0]"]
|
||||
16["StartSketchOnPlane<br>[533, 575, 0]"]
|
||||
17["StartSketchOnPlane<br>[533, 575, 0]"]
|
||||
18["StartSketchOnPlane<br>[533, 575, 0]"]
|
||||
56["Sweep Extrusion<br>[636, 665, 0]"]
|
||||
57["Sweep Extrusion<br>[636, 665, 0]"]
|
||||
58["Sweep Extrusion<br>[636, 665, 0]"]
|
||||
59["Sweep Extrusion<br>[636, 665, 0]"]
|
||||
60["Sweep Extrusion<br>[636, 665, 0]"]
|
||||
61["Sweep Extrusion<br>[636, 665, 0]"]
|
||||
62["Sweep Extrusion<br>[636, 665, 0]"]
|
||||
63["Sweep Extrusion<br>[1375, 1402, 0]"]
|
||||
64["Sweep Extrusion<br>[1375, 1402, 0]"]
|
||||
65["Sweep Extrusion<br>[1885, 1908, 0]"]
|
||||
66["Sweep Extrusion<br>[2363, 2386, 0]"]
|
||||
1["Plane<br>[565, 592, 0]"]
|
||||
2["Plane<br>[565, 592, 0]"]
|
||||
3["Plane<br>[565, 592, 0]"]
|
||||
4["Plane<br>[565, 592, 0]"]
|
||||
5["Plane<br>[565, 592, 0]"]
|
||||
6["Plane<br>[565, 592, 0]"]
|
||||
7["Plane<br>[565, 592, 0]"]
|
||||
8["Plane<br>[1302, 1322, 0]"]
|
||||
9["Plane<br>[1302, 1322, 0]"]
|
||||
10["Plane<br>[1768, 1818, 0]"]
|
||||
11["StartSketchOnPlane<br>[1754, 1819, 0]"]
|
||||
12["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||
13["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||
14["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||
15["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||
16["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||
17["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||
18["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||
56["Sweep Extrusion<br>[654, 683, 0]"]
|
||||
57["Sweep Extrusion<br>[654, 683, 0]"]
|
||||
58["Sweep Extrusion<br>[654, 683, 0]"]
|
||||
59["Sweep Extrusion<br>[654, 683, 0]"]
|
||||
60["Sweep Extrusion<br>[654, 683, 0]"]
|
||||
61["Sweep Extrusion<br>[654, 683, 0]"]
|
||||
62["Sweep Extrusion<br>[654, 683, 0]"]
|
||||
63["Sweep Extrusion<br>[1393, 1420, 0]"]
|
||||
64["Sweep Extrusion<br>[1393, 1420, 0]"]
|
||||
65["Sweep Extrusion<br>[1903, 1926, 0]"]
|
||||
66["Sweep Extrusion<br>[2381, 2404, 0]"]
|
||||
67[Wall]
|
||||
68[Wall]
|
||||
69[Wall]
|
||||
|
||||
@ -4256,6 +4256,31 @@ description: Result of parsing makeup-mirror.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,40 +1,40 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path2 [Path]
|
||||
2["Path<br>[566, 621, 0]"]
|
||||
8["Segment<br>[629, 697, 0]"]
|
||||
9["Segment<br>[705, 771, 0]"]
|
||||
10["Segment<br>[779, 847, 0]"]
|
||||
11["Segment<br>[855, 874, 0]"]
|
||||
2["Path<br>[584, 639, 0]"]
|
||||
8["Segment<br>[647, 715, 0]"]
|
||||
9["Segment<br>[723, 789, 0]"]
|
||||
10["Segment<br>[797, 865, 0]"]
|
||||
11["Segment<br>[873, 892, 0]"]
|
||||
20[Solid2d]
|
||||
end
|
||||
subgraph path3 [Path]
|
||||
3["Path<br>[1132, 1277, 0]"]
|
||||
12["Segment<br>[1132, 1277, 0]"]
|
||||
3["Path<br>[1150, 1295, 0]"]
|
||||
12["Segment<br>[1150, 1295, 0]"]
|
||||
19[Solid2d]
|
||||
end
|
||||
subgraph path4 [Path]
|
||||
4["Path<br>[1302, 1446, 0]"]
|
||||
13["Segment<br>[1302, 1446, 0]"]
|
||||
4["Path<br>[1320, 1464, 0]"]
|
||||
13["Segment<br>[1320, 1464, 0]"]
|
||||
22[Solid2d]
|
||||
end
|
||||
subgraph path5 [Path]
|
||||
5["Path<br>[1471, 1617, 0]"]
|
||||
14["Segment<br>[1471, 1617, 0]"]
|
||||
5["Path<br>[1489, 1635, 0]"]
|
||||
14["Segment<br>[1489, 1635, 0]"]
|
||||
21[Solid2d]
|
||||
end
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[1642, 1787, 0]"]
|
||||
15["Segment<br>[1642, 1787, 0]"]
|
||||
6["Path<br>[1660, 1805, 0]"]
|
||||
15["Segment<br>[1660, 1805, 0]"]
|
||||
17[Solid2d]
|
||||
end
|
||||
subgraph path7 [Path]
|
||||
7["Path<br>[1812, 1864, 0]"]
|
||||
16["Segment<br>[1812, 1864, 0]"]
|
||||
7["Path<br>[1830, 1882, 0]"]
|
||||
16["Segment<br>[1830, 1882, 0]"]
|
||||
18[Solid2d]
|
||||
end
|
||||
1["Plane<br>[541, 558, 0]"]
|
||||
23["Sweep Extrusion<br>[1871, 1903, 0]"]
|
||||
1["Plane<br>[559, 576, 0]"]
|
||||
23["Sweep Extrusion<br>[1889, 1921, 0]"]
|
||||
24[Wall]
|
||||
25[Wall]
|
||||
26[Wall]
|
||||
@ -49,10 +49,10 @@ flowchart LR
|
||||
35["SweepEdge Adjacent"]
|
||||
36["SweepEdge Adjacent"]
|
||||
37["SweepEdge Adjacent"]
|
||||
38["EdgeCut Fillet<br>[1909, 2174, 0]"]
|
||||
39["EdgeCut Fillet<br>[1909, 2174, 0]"]
|
||||
40["EdgeCut Fillet<br>[1909, 2174, 0]"]
|
||||
41["EdgeCut Fillet<br>[1909, 2174, 0]"]
|
||||
38["EdgeCut Fillet<br>[1927, 2192, 0]"]
|
||||
39["EdgeCut Fillet<br>[1927, 2192, 0]"]
|
||||
40["EdgeCut Fillet<br>[1927, 2192, 0]"]
|
||||
41["EdgeCut Fillet<br>[1927, 2192, 0]"]
|
||||
1 --- 2
|
||||
1 --- 3
|
||||
1 --- 4
|
||||
|
||||
@ -2928,6 +2928,31 @@ description: Result of parsing mounting-plate.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -87,9 +87,9 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 690,
|
||||
"end": 696,
|
||||
"start": 690,
|
||||
"commentStart": 708,
|
||||
"end": 714,
|
||||
"start": 708,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -100,9 +100,9 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 764,
|
||||
"end": 770,
|
||||
"start": 764,
|
||||
"commentStart": 782,
|
||||
"end": 788,
|
||||
"start": 782,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -113,9 +113,9 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 840,
|
||||
"end": 846,
|
||||
"start": 840,
|
||||
"commentStart": 858,
|
||||
"end": 864,
|
||||
"start": 858,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -126,9 +126,9 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 867,
|
||||
"end": 873,
|
||||
"start": 867,
|
||||
"commentStart": 885,
|
||||
"end": 891,
|
||||
"start": 885,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -149,9 +149,9 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
-5.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 690,
|
||||
"end": 696,
|
||||
"start": 690,
|
||||
"commentStart": 708,
|
||||
"end": 714,
|
||||
"start": 708,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -174,9 +174,9 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
-5.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 764,
|
||||
"end": 770,
|
||||
"start": 764,
|
||||
"commentStart": 782,
|
||||
"end": 788,
|
||||
"start": 782,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -199,9 +199,9 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
5.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 840,
|
||||
"end": 846,
|
||||
"start": 840,
|
||||
"commentStart": 858,
|
||||
"end": 864,
|
||||
"start": 858,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -224,9 +224,9 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
5.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 867,
|
||||
"end": 873,
|
||||
"start": 867,
|
||||
"commentStart": 885,
|
||||
"end": 891,
|
||||
"start": 885,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
@ -453,9 +453,9 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
-5.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 690,
|
||||
"end": 696,
|
||||
"start": 690,
|
||||
"commentStart": 708,
|
||||
"end": 714,
|
||||
"start": 708,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge1"
|
||||
},
|
||||
@ -478,9 +478,9 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
-5.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 764,
|
||||
"end": 770,
|
||||
"start": 764,
|
||||
"commentStart": 782,
|
||||
"end": 788,
|
||||
"start": 782,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge2"
|
||||
},
|
||||
@ -503,9 +503,9 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
5.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 840,
|
||||
"end": 846,
|
||||
"start": 840,
|
||||
"commentStart": 858,
|
||||
"end": 864,
|
||||
"start": 858,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge3"
|
||||
},
|
||||
@ -528,9 +528,9 @@ description: Variables in memory after executing mounting-plate.kcl
|
||||
5.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 867,
|
||||
"end": 873,
|
||||
"start": 867,
|
||||
"commentStart": 885,
|
||||
"end": 891,
|
||||
"start": 885,
|
||||
"type": "TagDeclarator",
|
||||
"value": "edge4"
|
||||
},
|
||||
|
||||
@ -1,217 +1,217 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path7 [Path]
|
||||
7["Path<br>[224, 279, 1]"]
|
||||
32["Segment<br>[285, 365, 1]"]
|
||||
33["Segment<br>[371, 483, 1]"]
|
||||
34["Segment<br>[489, 606, 1]"]
|
||||
35["Segment<br>[612, 697, 1]"]
|
||||
36["Segment<br>[703, 710, 1]"]
|
||||
7["Path<br>[242, 297, 1]"]
|
||||
32["Segment<br>[303, 383, 1]"]
|
||||
33["Segment<br>[389, 501, 1]"]
|
||||
34["Segment<br>[507, 624, 1]"]
|
||||
35["Segment<br>[630, 715, 1]"]
|
||||
36["Segment<br>[721, 728, 1]"]
|
||||
102[Solid2d]
|
||||
end
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[1151, 1208, 1]"]
|
||||
37["Segment<br>[1151, 1208, 1]"]
|
||||
8["Path<br>[1169, 1226, 1]"]
|
||||
37["Segment<br>[1169, 1226, 1]"]
|
||||
87[Solid2d]
|
||||
end
|
||||
subgraph path9 [Path]
|
||||
9["Path<br>[1411, 1448, 1]"]
|
||||
38["Segment<br>[1411, 1448, 1]"]
|
||||
9["Path<br>[1429, 1466, 1]"]
|
||||
38["Segment<br>[1429, 1466, 1]"]
|
||||
100[Solid2d]
|
||||
end
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[1585, 1725, 1]"]
|
||||
39["Segment<br>[1585, 1725, 1]"]
|
||||
10["Path<br>[1603, 1743, 1]"]
|
||||
39["Segment<br>[1603, 1743, 1]"]
|
||||
107[Solid2d]
|
||||
end
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[1976, 2116, 1]"]
|
||||
40["Segment<br>[1976, 2116, 1]"]
|
||||
11["Path<br>[1994, 2134, 1]"]
|
||||
40["Segment<br>[1994, 2134, 1]"]
|
||||
91[Solid2d]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[203, 263, 3]"]
|
||||
41["Segment<br>[203, 263, 3]"]
|
||||
12["Path<br>[221, 281, 3]"]
|
||||
41["Segment<br>[221, 281, 3]"]
|
||||
101[Solid2d]
|
||||
end
|
||||
subgraph path13 [Path]
|
||||
13["Path<br>[493, 529, 3]"]
|
||||
42["Segment<br>[535, 572, 3]"]
|
||||
43["Segment<br>[578, 633, 3]"]
|
||||
44["Segment<br>[639, 688, 3]"]
|
||||
45["Segment<br>[694, 750, 3]"]
|
||||
46["Segment<br>[756, 763, 3]"]
|
||||
13["Path<br>[511, 547, 3]"]
|
||||
42["Segment<br>[553, 590, 3]"]
|
||||
43["Segment<br>[596, 651, 3]"]
|
||||
44["Segment<br>[657, 706, 3]"]
|
||||
45["Segment<br>[712, 768, 3]"]
|
||||
46["Segment<br>[774, 781, 3]"]
|
||||
88[Solid2d]
|
||||
end
|
||||
subgraph path14 [Path]
|
||||
14["Path<br>[865, 1018, 3]"]
|
||||
47["Segment<br>[865, 1018, 3]"]
|
||||
14["Path<br>[883, 1036, 3]"]
|
||||
47["Segment<br>[883, 1036, 3]"]
|
||||
98[Solid2d]
|
||||
end
|
||||
subgraph path15 [Path]
|
||||
15["Path<br>[1227, 1352, 3]"]
|
||||
48["Segment<br>[1227, 1352, 3]"]
|
||||
15["Path<br>[1245, 1370, 3]"]
|
||||
48["Segment<br>[1245, 1370, 3]"]
|
||||
109[Solid2d]
|
||||
end
|
||||
subgraph path16 [Path]
|
||||
16["Path<br>[1652, 1804, 3]"]
|
||||
49["Segment<br>[1652, 1804, 3]"]
|
||||
16["Path<br>[1670, 1822, 3]"]
|
||||
49["Segment<br>[1670, 1822, 3]"]
|
||||
104[Solid2d]
|
||||
end
|
||||
subgraph path17 [Path]
|
||||
17["Path<br>[2029, 2069, 3]"]
|
||||
50["Segment<br>[2029, 2069, 3]"]
|
||||
17["Path<br>[2047, 2087, 3]"]
|
||||
50["Segment<br>[2047, 2087, 3]"]
|
||||
96[Solid2d]
|
||||
end
|
||||
subgraph path18 [Path]
|
||||
18["Path<br>[251, 372, 4]"]
|
||||
51["Segment<br>[378, 461, 4]"]
|
||||
52["Segment<br>[467, 519, 4]"]
|
||||
53["Segment<br>[525, 608, 4]"]
|
||||
54["Segment<br>[614, 670, 4]"]
|
||||
55["Segment<br>[676, 683, 4]"]
|
||||
18["Path<br>[269, 390, 4]"]
|
||||
51["Segment<br>[396, 479, 4]"]
|
||||
52["Segment<br>[485, 537, 4]"]
|
||||
53["Segment<br>[543, 626, 4]"]
|
||||
54["Segment<br>[632, 688, 4]"]
|
||||
55["Segment<br>[694, 701, 4]"]
|
||||
105[Solid2d]
|
||||
end
|
||||
subgraph path19 [Path]
|
||||
19["Path<br>[804, 868, 4]"]
|
||||
56["Segment<br>[804, 868, 4]"]
|
||||
19["Path<br>[822, 886, 4]"]
|
||||
56["Segment<br>[822, 886, 4]"]
|
||||
99[Solid2d]
|
||||
end
|
||||
subgraph path20 [Path]
|
||||
20["Path<br>[1042, 1228, 4]"]
|
||||
57["Segment<br>[1042, 1228, 4]"]
|
||||
20["Path<br>[1060, 1246, 4]"]
|
||||
57["Segment<br>[1060, 1246, 4]"]
|
||||
89[Solid2d]
|
||||
end
|
||||
subgraph path21 [Path]
|
||||
21["Path<br>[1436, 1480, 4]"]
|
||||
58["Segment<br>[1436, 1480, 4]"]
|
||||
21["Path<br>[1454, 1498, 4]"]
|
||||
58["Segment<br>[1454, 1498, 4]"]
|
||||
92[Solid2d]
|
||||
end
|
||||
subgraph path22 [Path]
|
||||
22["Path<br>[1723, 1893, 4]"]
|
||||
59["Segment<br>[1723, 1893, 4]"]
|
||||
22["Path<br>[1741, 1911, 4]"]
|
||||
59["Segment<br>[1741, 1911, 4]"]
|
||||
111[Solid2d]
|
||||
end
|
||||
subgraph path23 [Path]
|
||||
23["Path<br>[2229, 2382, 4]"]
|
||||
60["Segment<br>[2229, 2382, 4]"]
|
||||
23["Path<br>[2247, 2400, 4]"]
|
||||
60["Segment<br>[2247, 2400, 4]"]
|
||||
106[Solid2d]
|
||||
end
|
||||
subgraph path24 [Path]
|
||||
24["Path<br>[271, 460, 5]"]
|
||||
61["Segment<br>[466, 552, 5]"]
|
||||
62["Segment<br>[558, 612, 5]"]
|
||||
63["Segment<br>[618, 704, 5]"]
|
||||
64["Segment<br>[710, 780, 5]"]
|
||||
65["Segment<br>[786, 793, 5]"]
|
||||
24["Path<br>[289, 478, 5]"]
|
||||
61["Segment<br>[484, 570, 5]"]
|
||||
62["Segment<br>[576, 630, 5]"]
|
||||
63["Segment<br>[636, 722, 5]"]
|
||||
64["Segment<br>[728, 798, 5]"]
|
||||
65["Segment<br>[804, 811, 5]"]
|
||||
97[Solid2d]
|
||||
end
|
||||
subgraph path25 [Path]
|
||||
25["Path<br>[912, 1099, 5]"]
|
||||
66["Segment<br>[912, 1099, 5]"]
|
||||
25["Path<br>[930, 1117, 5]"]
|
||||
66["Segment<br>[930, 1117, 5]"]
|
||||
103[Solid2d]
|
||||
end
|
||||
subgraph path26 [Path]
|
||||
26["Path<br>[1309, 1476, 5]"]
|
||||
67["Segment<br>[1309, 1476, 5]"]
|
||||
26["Path<br>[1327, 1494, 5]"]
|
||||
67["Segment<br>[1327, 1494, 5]"]
|
||||
108[Solid2d]
|
||||
end
|
||||
subgraph path27 [Path]
|
||||
27["Path<br>[1880, 2122, 5]"]
|
||||
68["Segment<br>[1880, 2122, 5]"]
|
||||
27["Path<br>[1898, 2140, 5]"]
|
||||
68["Segment<br>[1898, 2140, 5]"]
|
||||
93[Solid2d]
|
||||
end
|
||||
subgraph path28 [Path]
|
||||
28["Path<br>[2226, 2466, 5]"]
|
||||
69["Segment<br>[2226, 2466, 5]"]
|
||||
28["Path<br>[2244, 2484, 5]"]
|
||||
69["Segment<br>[2244, 2484, 5]"]
|
||||
110[Solid2d]
|
||||
end
|
||||
subgraph path29 [Path]
|
||||
29["Path<br>[2625, 2663, 5]"]
|
||||
70["Segment<br>[2625, 2663, 5]"]
|
||||
29["Path<br>[2643, 2681, 5]"]
|
||||
70["Segment<br>[2643, 2681, 5]"]
|
||||
95[Solid2d]
|
||||
end
|
||||
subgraph path30 [Path]
|
||||
30["Path<br>[2798, 2979, 5]"]
|
||||
71["Segment<br>[2985, 3053, 5]"]
|
||||
72["Segment<br>[3059, 3169, 5]"]
|
||||
73["Segment<br>[3175, 3243, 5]"]
|
||||
74["Segment<br>[3249, 3325, 5]"]
|
||||
75["Segment<br>[3331, 3407, 5]"]
|
||||
76["Segment<br>[3413, 3487, 5]"]
|
||||
77["Segment<br>[3493, 3549, 5]"]
|
||||
78["Segment<br>[3555, 3562, 5]"]
|
||||
30["Path<br>[2816, 2997, 5]"]
|
||||
71["Segment<br>[3003, 3071, 5]"]
|
||||
72["Segment<br>[3077, 3187, 5]"]
|
||||
73["Segment<br>[3193, 3261, 5]"]
|
||||
74["Segment<br>[3267, 3343, 5]"]
|
||||
75["Segment<br>[3349, 3425, 5]"]
|
||||
76["Segment<br>[3431, 3505, 5]"]
|
||||
77["Segment<br>[3511, 3567, 5]"]
|
||||
78["Segment<br>[3573, 3580, 5]"]
|
||||
94[Solid2d]
|
||||
end
|
||||
subgraph path31 [Path]
|
||||
31["Path<br>[3696, 3877, 5]"]
|
||||
79["Segment<br>[3883, 3953, 5]"]
|
||||
80["Segment<br>[3959, 4074, 5]"]
|
||||
81["Segment<br>[4080, 4150, 5]"]
|
||||
82["Segment<br>[4156, 4234, 5]"]
|
||||
83["Segment<br>[4240, 4318, 5]"]
|
||||
84["Segment<br>[4324, 4400, 5]"]
|
||||
85["Segment<br>[4406, 4462, 5]"]
|
||||
86["Segment<br>[4468, 4475, 5]"]
|
||||
31["Path<br>[3714, 3895, 5]"]
|
||||
79["Segment<br>[3901, 3971, 5]"]
|
||||
80["Segment<br>[3977, 4092, 5]"]
|
||||
81["Segment<br>[4098, 4168, 5]"]
|
||||
82["Segment<br>[4174, 4252, 5]"]
|
||||
83["Segment<br>[4258, 4336, 5]"]
|
||||
84["Segment<br>[4342, 4418, 5]"]
|
||||
85["Segment<br>[4424, 4480, 5]"]
|
||||
86["Segment<br>[4486, 4493, 5]"]
|
||||
90[Solid2d]
|
||||
end
|
||||
1["Plane<br>[201, 218, 1]"]
|
||||
2["Plane<br>[174, 197, 3]"]
|
||||
3["Plane<br>[464, 487, 3]"]
|
||||
4["Plane<br>[2000, 2023, 3]"]
|
||||
5["Plane<br>[222, 245, 4]"]
|
||||
6["Plane<br>[242, 265, 5]"]
|
||||
112["Sweep Extrusion<br>[724, 771, 1]"]
|
||||
113["Sweep Extrusion<br>[1222, 1288, 1]"]
|
||||
114["Sweep Extrusion<br>[1462, 1492, 1]"]
|
||||
115["Sweep Extrusion<br>[1873, 1920, 1]"]
|
||||
116["Sweep Extrusion<br>[1873, 1920, 1]"]
|
||||
117["Sweep Extrusion<br>[1873, 1920, 1]"]
|
||||
118["Sweep Extrusion<br>[1873, 1920, 1]"]
|
||||
119["Sweep Extrusion<br>[2252, 2299, 1]"]
|
||||
120["Sweep Extrusion<br>[2252, 2299, 1]"]
|
||||
121["Sweep Extrusion<br>[2252, 2299, 1]"]
|
||||
122["Sweep Extrusion<br>[2252, 2299, 1]"]
|
||||
123["Sweep Extrusion<br>[277, 315, 3]"]
|
||||
124["Sweep Extrusion<br>[778, 808, 3]"]
|
||||
125["Sweep Extrusion<br>[1032, 1064, 3]"]
|
||||
126["Sweep Extrusion<br>[1563, 1595, 3]"]
|
||||
127["Sweep Extrusion<br>[1563, 1595, 3]"]
|
||||
128["Sweep Extrusion<br>[1563, 1595, 3]"]
|
||||
129["Sweep Extrusion<br>[1563, 1595, 3]"]
|
||||
130["Sweep Extrusion<br>[1818, 1851, 3]"]
|
||||
131["Sweep Extrusion<br>[2071, 2102, 3]"]
|
||||
132["Sweep Extrusion<br>[697, 745, 4]"]
|
||||
133["Sweep Extrusion<br>[883, 916, 4]"]
|
||||
134["Sweep Extrusion<br>[1243, 1273, 4]"]
|
||||
135["Sweep Extrusion<br>[1633, 1666, 4]"]
|
||||
136["Sweep Extrusion<br>[1633, 1666, 4]"]
|
||||
137["Sweep Extrusion<br>[1633, 1666, 4]"]
|
||||
138["Sweep Extrusion<br>[1633, 1666, 4]"]
|
||||
139["Sweep Extrusion<br>[1633, 1666, 4]"]
|
||||
140["Sweep Extrusion<br>[1633, 1666, 4]"]
|
||||
141["Sweep Extrusion<br>[1633, 1666, 4]"]
|
||||
142["Sweep Extrusion<br>[1633, 1666, 4]"]
|
||||
143["Sweep Extrusion<br>[2139, 2172, 4]"]
|
||||
144["Sweep Extrusion<br>[2139, 2172, 4]"]
|
||||
145["Sweep Extrusion<br>[2139, 2172, 4]"]
|
||||
146["Sweep Extrusion<br>[2139, 2172, 4]"]
|
||||
147["Sweep Extrusion<br>[2384, 2414, 4]"]
|
||||
148["Sweep Extrusion<br>[807, 855, 5]"]
|
||||
149["Sweep Extrusion<br>[1114, 1147, 5]"]
|
||||
150["Sweep Extrusion<br>[1719, 1752, 5]"]
|
||||
151["Sweep Extrusion<br>[1719, 1752, 5]"]
|
||||
152["Sweep Extrusion<br>[1719, 1752, 5]"]
|
||||
153["Sweep Extrusion<br>[1719, 1752, 5]"]
|
||||
154["Sweep Extrusion<br>[1719, 1752, 5]"]
|
||||
155["Sweep Extrusion<br>[1719, 1752, 5]"]
|
||||
156["Sweep Extrusion<br>[1719, 1752, 5]"]
|
||||
157["Sweep Extrusion<br>[1719, 1752, 5]"]
|
||||
158["Sweep Extrusion<br>[2136, 2169, 5]"]
|
||||
159["Sweep Extrusion<br>[2481, 2514, 5]"]
|
||||
160["Sweep Extrusion<br>[2678, 2712, 5]"]
|
||||
161["Sweep Extrusion<br>[3577, 3610, 5]"]
|
||||
162["Sweep Extrusion<br>[4477, 4510, 5]"]
|
||||
1["Plane<br>[219, 236, 1]"]
|
||||
2["Plane<br>[192, 215, 3]"]
|
||||
3["Plane<br>[482, 505, 3]"]
|
||||
4["Plane<br>[2018, 2041, 3]"]
|
||||
5["Plane<br>[240, 263, 4]"]
|
||||
6["Plane<br>[260, 283, 5]"]
|
||||
112["Sweep Extrusion<br>[742, 789, 1]"]
|
||||
113["Sweep Extrusion<br>[1240, 1306, 1]"]
|
||||
114["Sweep Extrusion<br>[1480, 1510, 1]"]
|
||||
115["Sweep Extrusion<br>[1891, 1938, 1]"]
|
||||
116["Sweep Extrusion<br>[1891, 1938, 1]"]
|
||||
117["Sweep Extrusion<br>[1891, 1938, 1]"]
|
||||
118["Sweep Extrusion<br>[1891, 1938, 1]"]
|
||||
119["Sweep Extrusion<br>[2270, 2317, 1]"]
|
||||
120["Sweep Extrusion<br>[2270, 2317, 1]"]
|
||||
121["Sweep Extrusion<br>[2270, 2317, 1]"]
|
||||
122["Sweep Extrusion<br>[2270, 2317, 1]"]
|
||||
123["Sweep Extrusion<br>[295, 333, 3]"]
|
||||
124["Sweep Extrusion<br>[796, 826, 3]"]
|
||||
125["Sweep Extrusion<br>[1050, 1082, 3]"]
|
||||
126["Sweep Extrusion<br>[1581, 1613, 3]"]
|
||||
127["Sweep Extrusion<br>[1581, 1613, 3]"]
|
||||
128["Sweep Extrusion<br>[1581, 1613, 3]"]
|
||||
129["Sweep Extrusion<br>[1581, 1613, 3]"]
|
||||
130["Sweep Extrusion<br>[1836, 1869, 3]"]
|
||||
131["Sweep Extrusion<br>[2089, 2120, 3]"]
|
||||
132["Sweep Extrusion<br>[715, 763, 4]"]
|
||||
133["Sweep Extrusion<br>[901, 934, 4]"]
|
||||
134["Sweep Extrusion<br>[1261, 1291, 4]"]
|
||||
135["Sweep Extrusion<br>[1651, 1684, 4]"]
|
||||
136["Sweep Extrusion<br>[1651, 1684, 4]"]
|
||||
137["Sweep Extrusion<br>[1651, 1684, 4]"]
|
||||
138["Sweep Extrusion<br>[1651, 1684, 4]"]
|
||||
139["Sweep Extrusion<br>[1651, 1684, 4]"]
|
||||
140["Sweep Extrusion<br>[1651, 1684, 4]"]
|
||||
141["Sweep Extrusion<br>[1651, 1684, 4]"]
|
||||
142["Sweep Extrusion<br>[1651, 1684, 4]"]
|
||||
143["Sweep Extrusion<br>[2157, 2190, 4]"]
|
||||
144["Sweep Extrusion<br>[2157, 2190, 4]"]
|
||||
145["Sweep Extrusion<br>[2157, 2190, 4]"]
|
||||
146["Sweep Extrusion<br>[2157, 2190, 4]"]
|
||||
147["Sweep Extrusion<br>[2402, 2432, 4]"]
|
||||
148["Sweep Extrusion<br>[825, 873, 5]"]
|
||||
149["Sweep Extrusion<br>[1132, 1165, 5]"]
|
||||
150["Sweep Extrusion<br>[1737, 1770, 5]"]
|
||||
151["Sweep Extrusion<br>[1737, 1770, 5]"]
|
||||
152["Sweep Extrusion<br>[1737, 1770, 5]"]
|
||||
153["Sweep Extrusion<br>[1737, 1770, 5]"]
|
||||
154["Sweep Extrusion<br>[1737, 1770, 5]"]
|
||||
155["Sweep Extrusion<br>[1737, 1770, 5]"]
|
||||
156["Sweep Extrusion<br>[1737, 1770, 5]"]
|
||||
157["Sweep Extrusion<br>[1737, 1770, 5]"]
|
||||
158["Sweep Extrusion<br>[2154, 2187, 5]"]
|
||||
159["Sweep Extrusion<br>[2499, 2532, 5]"]
|
||||
160["Sweep Extrusion<br>[2696, 2730, 5]"]
|
||||
161["Sweep Extrusion<br>[3595, 3628, 5]"]
|
||||
162["Sweep Extrusion<br>[4495, 4528, 5]"]
|
||||
163[Wall]
|
||||
164[Wall]
|
||||
165[Wall]
|
||||
@ -393,17 +393,17 @@ flowchart LR
|
||||
341["SweepEdge Adjacent"]
|
||||
342["SweepEdge Adjacent"]
|
||||
343["SweepEdge Adjacent"]
|
||||
344["EdgeCut Chamfer<br>[777, 1054, 1]"]
|
||||
345["EdgeCut Chamfer<br>[777, 1054, 1]"]
|
||||
346["EdgeCut Chamfer<br>[777, 1054, 1]"]
|
||||
347["EdgeCut Chamfer<br>[777, 1054, 1]"]
|
||||
348["EdgeCut Fillet<br>[1294, 1355, 1]"]
|
||||
349["EdgeCut Fillet<br>[321, 383, 3]"]
|
||||
350["EdgeCut Fillet<br>[1070, 1132, 3]"]
|
||||
351["EdgeCut Fillet<br>[1857, 1919, 3]"]
|
||||
352["EdgeCut Fillet<br>[922, 984, 4]"]
|
||||
353["EdgeCut Fillet<br>[1279, 1341, 4]"]
|
||||
354["EdgeCut Fillet<br>[1153, 1215, 5]"]
|
||||
344["EdgeCut Chamfer<br>[795, 1072, 1]"]
|
||||
345["EdgeCut Chamfer<br>[795, 1072, 1]"]
|
||||
346["EdgeCut Chamfer<br>[795, 1072, 1]"]
|
||||
347["EdgeCut Chamfer<br>[795, 1072, 1]"]
|
||||
348["EdgeCut Fillet<br>[1312, 1373, 1]"]
|
||||
349["EdgeCut Fillet<br>[339, 401, 3]"]
|
||||
350["EdgeCut Fillet<br>[1088, 1150, 3]"]
|
||||
351["EdgeCut Fillet<br>[1875, 1937, 3]"]
|
||||
352["EdgeCut Fillet<br>[940, 1002, 4]"]
|
||||
353["EdgeCut Fillet<br>[1297, 1359, 4]"]
|
||||
354["EdgeCut Fillet<br>[1171, 1233, 5]"]
|
||||
1 --- 7
|
||||
2 --- 12
|
||||
3 --- 13
|
||||
|
||||
@ -234,6 +234,31 @@ description: Result of parsing multi-axis-robot.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,42 +1,42 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path5 [Path]
|
||||
5["Path<br>[773, 817, 0]"]
|
||||
9["Segment<br>[823, 867, 0]"]
|
||||
10["Segment<br>[873, 916, 0]"]
|
||||
11["Segment<br>[922, 966, 0]"]
|
||||
12["Segment<br>[972, 979, 0]"]
|
||||
5["Path<br>[791, 835, 0]"]
|
||||
9["Segment<br>[841, 885, 0]"]
|
||||
10["Segment<br>[891, 934, 0]"]
|
||||
11["Segment<br>[940, 984, 0]"]
|
||||
12["Segment<br>[990, 997, 0]"]
|
||||
19[Solid2d]
|
||||
end
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[1066, 1213, 0]"]
|
||||
13["Segment<br>[1066, 1213, 0]"]
|
||||
6["Path<br>[1084, 1231, 0]"]
|
||||
13["Segment<br>[1084, 1231, 0]"]
|
||||
18[Solid2d]
|
||||
end
|
||||
subgraph path7 [Path]
|
||||
7["Path<br>[1460, 1609, 0]"]
|
||||
14["Segment<br>[1460, 1609, 0]"]
|
||||
7["Path<br>[1478, 1627, 0]"]
|
||||
14["Segment<br>[1478, 1627, 0]"]
|
||||
17[Solid2d]
|
||||
end
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[1861, 1909, 0]"]
|
||||
15["Segment<br>[1861, 1909, 0]"]
|
||||
8["Path<br>[1879, 1927, 0]"]
|
||||
15["Segment<br>[1879, 1927, 0]"]
|
||||
16[Solid2d]
|
||||
end
|
||||
1["Plane<br>[750, 767, 0]"]
|
||||
2["StartSketchOnFace<br>[1824, 1855, 0]"]
|
||||
3["StartSketchOnFace<br>[1421, 1454, 0]"]
|
||||
4["StartSketchOnFace<br>[1029, 1060, 0]"]
|
||||
20["Sweep Extrusion<br>[985, 1009, 0]"]
|
||||
21["Sweep Extrusion<br>[1378, 1407, 0]"]
|
||||
22["Sweep Extrusion<br>[1378, 1407, 0]"]
|
||||
23["Sweep Extrusion<br>[1378, 1407, 0]"]
|
||||
24["Sweep Extrusion<br>[1378, 1407, 0]"]
|
||||
25["Sweep Extrusion<br>[1774, 1809, 0]"]
|
||||
26["Sweep Extrusion<br>[1774, 1809, 0]"]
|
||||
27["Sweep Extrusion<br>[1774, 1809, 0]"]
|
||||
28["Sweep Extrusion<br>[1774, 1809, 0]"]
|
||||
29["Sweep Extrusion<br>[1915, 1940, 0]"]
|
||||
1["Plane<br>[768, 785, 0]"]
|
||||
2["StartSketchOnFace<br>[1842, 1873, 0]"]
|
||||
3["StartSketchOnFace<br>[1439, 1472, 0]"]
|
||||
4["StartSketchOnFace<br>[1047, 1078, 0]"]
|
||||
20["Sweep Extrusion<br>[1003, 1027, 0]"]
|
||||
21["Sweep Extrusion<br>[1396, 1425, 0]"]
|
||||
22["Sweep Extrusion<br>[1396, 1425, 0]"]
|
||||
23["Sweep Extrusion<br>[1396, 1425, 0]"]
|
||||
24["Sweep Extrusion<br>[1396, 1425, 0]"]
|
||||
25["Sweep Extrusion<br>[1792, 1827, 0]"]
|
||||
26["Sweep Extrusion<br>[1792, 1827, 0]"]
|
||||
27["Sweep Extrusion<br>[1792, 1827, 0]"]
|
||||
28["Sweep Extrusion<br>[1792, 1827, 0]"]
|
||||
29["Sweep Extrusion<br>[1933, 1958, 0]"]
|
||||
30[Wall]
|
||||
31[Wall]
|
||||
32[Wall]
|
||||
|
||||
@ -2666,6 +2666,31 @@ description: Result of parsing parametric-bearing-pillow-block.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,173 +1,173 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path23 [Path]
|
||||
23["Path<br>[422, 484, 2]"]
|
||||
46["Segment<br>[422, 484, 2]"]
|
||||
23["Path<br>[440, 502, 2]"]
|
||||
46["Segment<br>[440, 502, 2]"]
|
||||
94[Solid2d]
|
||||
end
|
||||
subgraph path24 [Path]
|
||||
24["Path<br>[622, 682, 2]"]
|
||||
47["Segment<br>[622, 682, 2]"]
|
||||
24["Path<br>[640, 700, 2]"]
|
||||
47["Segment<br>[640, 700, 2]"]
|
||||
92[Solid2d]
|
||||
end
|
||||
subgraph path25 [Path]
|
||||
25["Path<br>[595, 688, 3]"]
|
||||
48["Segment<br>[595, 688, 3]"]
|
||||
25["Path<br>[613, 706, 3]"]
|
||||
48["Segment<br>[613, 706, 3]"]
|
||||
87[Solid2d]
|
||||
end
|
||||
subgraph path26 [Path]
|
||||
26["Path<br>[595, 688, 3]"]
|
||||
49["Segment<br>[595, 688, 3]"]
|
||||
26["Path<br>[613, 706, 3]"]
|
||||
49["Segment<br>[613, 706, 3]"]
|
||||
89[Solid2d]
|
||||
end
|
||||
subgraph path27 [Path]
|
||||
27["Path<br>[917, 972, 3]"]
|
||||
51["Segment<br>[917, 972, 3]"]
|
||||
27["Path<br>[935, 990, 3]"]
|
||||
51["Segment<br>[935, 990, 3]"]
|
||||
84[Solid2d]
|
||||
end
|
||||
subgraph path28 [Path]
|
||||
28["Path<br>[917, 972, 3]"]
|
||||
50["Segment<br>[917, 972, 3]"]
|
||||
28["Path<br>[935, 990, 3]"]
|
||||
50["Segment<br>[935, 990, 3]"]
|
||||
100[Solid2d]
|
||||
end
|
||||
subgraph path29 [Path]
|
||||
29["Path<br>[1202, 1261, 3]"]
|
||||
53["Segment<br>[1202, 1261, 3]"]
|
||||
29["Path<br>[1220, 1279, 3]"]
|
||||
53["Segment<br>[1220, 1279, 3]"]
|
||||
85[Solid2d]
|
||||
end
|
||||
subgraph path30 [Path]
|
||||
30["Path<br>[1202, 1261, 3]"]
|
||||
52["Segment<br>[1202, 1261, 3]"]
|
||||
30["Path<br>[1220, 1279, 3]"]
|
||||
52["Segment<br>[1220, 1279, 3]"]
|
||||
99[Solid2d]
|
||||
end
|
||||
subgraph path31 [Path]
|
||||
31["Path<br>[1368, 1428, 3]"]
|
||||
54["Segment<br>[1368, 1428, 3]"]
|
||||
31["Path<br>[1386, 1446, 3]"]
|
||||
54["Segment<br>[1386, 1446, 3]"]
|
||||
82[Solid2d]
|
||||
end
|
||||
subgraph path32 [Path]
|
||||
32["Path<br>[1368, 1428, 3]"]
|
||||
55["Segment<br>[1368, 1428, 3]"]
|
||||
32["Path<br>[1386, 1446, 3]"]
|
||||
55["Segment<br>[1386, 1446, 3]"]
|
||||
95[Solid2d]
|
||||
end
|
||||
subgraph path33 [Path]
|
||||
33["Path<br>[1590, 1643, 3]"]
|
||||
56["Segment<br>[1590, 1643, 3]"]
|
||||
33["Path<br>[1608, 1661, 3]"]
|
||||
56["Segment<br>[1608, 1661, 3]"]
|
||||
81[Solid2d]
|
||||
end
|
||||
subgraph path34 [Path]
|
||||
34["Path<br>[1590, 1643, 3]"]
|
||||
57["Segment<br>[1590, 1643, 3]"]
|
||||
34["Path<br>[1608, 1661, 3]"]
|
||||
57["Segment<br>[1608, 1661, 3]"]
|
||||
98[Solid2d]
|
||||
end
|
||||
subgraph path35 [Path]
|
||||
35["Path<br>[411, 463, 4]"]
|
||||
58["Segment<br>[411, 463, 4]"]
|
||||
35["Path<br>[429, 481, 4]"]
|
||||
58["Segment<br>[429, 481, 4]"]
|
||||
93[Solid2d]
|
||||
end
|
||||
subgraph path36 [Path]
|
||||
36["Path<br>[601, 653, 4]"]
|
||||
59["Segment<br>[601, 653, 4]"]
|
||||
36["Path<br>[619, 671, 4]"]
|
||||
59["Segment<br>[619, 671, 4]"]
|
||||
101[Solid2d]
|
||||
end
|
||||
subgraph path37 [Path]
|
||||
37["Path<br>[439, 509, 5]"]
|
||||
60["Segment<br>[439, 509, 5]"]
|
||||
37["Path<br>[457, 527, 5]"]
|
||||
60["Segment<br>[457, 527, 5]"]
|
||||
91[Solid2d]
|
||||
end
|
||||
subgraph path38 [Path]
|
||||
38["Path<br>[778, 865, 5]"]
|
||||
61["Segment<br>[873, 924, 5]"]
|
||||
62["Segment<br>[932, 983, 5]"]
|
||||
63["Segment<br>[991, 1042, 5]"]
|
||||
64["Segment<br>[1050, 1100, 5]"]
|
||||
65["Segment<br>[1108, 1158, 5]"]
|
||||
66["Segment<br>[1166, 1173, 5]"]
|
||||
38["Path<br>[796, 883, 5]"]
|
||||
61["Segment<br>[891, 942, 5]"]
|
||||
62["Segment<br>[950, 1001, 5]"]
|
||||
63["Segment<br>[1009, 1060, 5]"]
|
||||
64["Segment<br>[1068, 1118, 5]"]
|
||||
65["Segment<br>[1126, 1176, 5]"]
|
||||
66["Segment<br>[1184, 1191, 5]"]
|
||||
83[Solid2d]
|
||||
end
|
||||
subgraph path39 [Path]
|
||||
39["Path<br>[1312, 1381, 5]"]
|
||||
67["Segment<br>[1312, 1381, 5]"]
|
||||
39["Path<br>[1330, 1399, 5]"]
|
||||
67["Segment<br>[1330, 1399, 5]"]
|
||||
96[Solid2d]
|
||||
end
|
||||
subgraph path40 [Path]
|
||||
40["Path<br>[425, 515, 6]"]
|
||||
68["Segment<br>[523, 573, 6]"]
|
||||
69["Segment<br>[581, 631, 6]"]
|
||||
70["Segment<br>[639, 689, 6]"]
|
||||
71["Segment<br>[697, 746, 6]"]
|
||||
72["Segment<br>[754, 803, 6]"]
|
||||
73["Segment<br>[811, 818, 6]"]
|
||||
40["Path<br>[443, 533, 6]"]
|
||||
68["Segment<br>[541, 591, 6]"]
|
||||
69["Segment<br>[599, 649, 6]"]
|
||||
70["Segment<br>[657, 707, 6]"]
|
||||
71["Segment<br>[715, 764, 6]"]
|
||||
72["Segment<br>[772, 821, 6]"]
|
||||
73["Segment<br>[829, 836, 6]"]
|
||||
86[Solid2d]
|
||||
end
|
||||
subgraph path41 [Path]
|
||||
41["Path<br>[967, 1019, 6]"]
|
||||
74["Segment<br>[967, 1019, 6]"]
|
||||
41["Path<br>[985, 1037, 6]"]
|
||||
74["Segment<br>[985, 1037, 6]"]
|
||||
97[Solid2d]
|
||||
end
|
||||
subgraph path42 [Path]
|
||||
42["Path<br>[325, 383, 7]"]
|
||||
75["Segment<br>[325, 383, 7]"]
|
||||
42["Path<br>[343, 401, 7]"]
|
||||
75["Segment<br>[343, 401, 7]"]
|
||||
80[Solid2d]
|
||||
end
|
||||
subgraph path43 [Path]
|
||||
43["Path<br>[325, 383, 7]"]
|
||||
76["Segment<br>[325, 383, 7]"]
|
||||
43["Path<br>[343, 401, 7]"]
|
||||
76["Segment<br>[343, 401, 7]"]
|
||||
90[Solid2d]
|
||||
end
|
||||
subgraph path44 [Path]
|
||||
44["Path<br>[527, 582, 7]"]
|
||||
78["Segment<br>[527, 582, 7]"]
|
||||
44["Path<br>[545, 600, 7]"]
|
||||
78["Segment<br>[545, 600, 7]"]
|
||||
79[Solid2d]
|
||||
end
|
||||
subgraph path45 [Path]
|
||||
45["Path<br>[527, 582, 7]"]
|
||||
77["Segment<br>[527, 582, 7]"]
|
||||
45["Path<br>[545, 600, 7]"]
|
||||
77["Segment<br>[545, 600, 7]"]
|
||||
88[Solid2d]
|
||||
end
|
||||
1["Plane<br>[399, 416, 2]"]
|
||||
2["Plane<br>[570, 587, 3]"]
|
||||
3["Plane<br>[570, 587, 3]"]
|
||||
4["Plane<br>[892, 909, 3]"]
|
||||
5["Plane<br>[892, 909, 3]"]
|
||||
6["Plane<br>[386, 403, 4]"]
|
||||
7["Plane<br>[414, 431, 5]"]
|
||||
8["Plane<br>[400, 417, 6]"]
|
||||
9["Plane<br>[300, 317, 7]"]
|
||||
10["Plane<br>[300, 317, 7]"]
|
||||
11["StartSketchOnFace<br>[1323, 1360, 3]"]
|
||||
12["StartSketchOnFace<br>[1544, 1582, 3]"]
|
||||
13["StartSketchOnFace<br>[922, 959, 6]"]
|
||||
14["StartSketchOnFace<br>[484, 519, 7]"]
|
||||
15["StartSketchOnFace<br>[1544, 1582, 3]"]
|
||||
16["StartSketchOnFace<br>[1155, 1194, 3]"]
|
||||
17["StartSketchOnFace<br>[733, 770, 5]"]
|
||||
18["StartSketchOnFace<br>[1269, 1304, 5]"]
|
||||
19["StartSketchOnFace<br>[556, 593, 4]"]
|
||||
20["StartSketchOnFace<br>[1155, 1194, 3]"]
|
||||
21["StartSketchOnFace<br>[1323, 1360, 3]"]
|
||||
22["StartSketchOnFace<br>[484, 519, 7]"]
|
||||
102["Sweep Extrusion<br>[490, 526, 2]"]
|
||||
103["Sweep Extrusion<br>[688, 725, 2]"]
|
||||
104["Sweep Extrusion<br>[1020, 1060, 3]"]
|
||||
105["Sweep Extrusion<br>[1020, 1060, 3]"]
|
||||
106["Sweep Extrusion<br>[1269, 1306, 3]"]
|
||||
107["Sweep Extrusion<br>[1269, 1306, 3]"]
|
||||
108["Sweep Extrusion<br>[1436, 1474, 3]"]
|
||||
109["Sweep Extrusion<br>[1436, 1474, 3]"]
|
||||
110["Sweep Extrusion<br>[1651, 1693, 3]"]
|
||||
111["Sweep Extrusion<br>[1651, 1693, 3]"]
|
||||
112["Sweep Extrusion<br>[471, 504, 4]"]
|
||||
113["Sweep Extrusion<br>[661, 698, 4]"]
|
||||
114["Sweep Extrusion<br>[517, 550, 5]"]
|
||||
115["Sweep Extrusion<br>[1181, 1221, 5]"]
|
||||
116["Sweep Extrusion<br>[1389, 1417, 5]"]
|
||||
117["Sweep Extrusion<br>[826, 859, 6]"]
|
||||
118["Sweep Extrusion<br>[1027, 1064, 6]"]
|
||||
119["Sweep Extrusion<br>[391, 422, 7]"]
|
||||
120["Sweep Extrusion<br>[391, 422, 7]"]
|
||||
121["Sweep Extrusion<br>[590, 622, 7]"]
|
||||
122["Sweep Extrusion<br>[590, 622, 7]"]
|
||||
1["Plane<br>[417, 434, 2]"]
|
||||
2["Plane<br>[588, 605, 3]"]
|
||||
3["Plane<br>[588, 605, 3]"]
|
||||
4["Plane<br>[910, 927, 3]"]
|
||||
5["Plane<br>[910, 927, 3]"]
|
||||
6["Plane<br>[404, 421, 4]"]
|
||||
7["Plane<br>[432, 449, 5]"]
|
||||
8["Plane<br>[418, 435, 6]"]
|
||||
9["Plane<br>[318, 335, 7]"]
|
||||
10["Plane<br>[318, 335, 7]"]
|
||||
11["StartSketchOnFace<br>[1341, 1378, 3]"]
|
||||
12["StartSketchOnFace<br>[1562, 1600, 3]"]
|
||||
13["StartSketchOnFace<br>[940, 977, 6]"]
|
||||
14["StartSketchOnFace<br>[502, 537, 7]"]
|
||||
15["StartSketchOnFace<br>[1562, 1600, 3]"]
|
||||
16["StartSketchOnFace<br>[1173, 1212, 3]"]
|
||||
17["StartSketchOnFace<br>[751, 788, 5]"]
|
||||
18["StartSketchOnFace<br>[1287, 1322, 5]"]
|
||||
19["StartSketchOnFace<br>[574, 611, 4]"]
|
||||
20["StartSketchOnFace<br>[1173, 1212, 3]"]
|
||||
21["StartSketchOnFace<br>[1341, 1378, 3]"]
|
||||
22["StartSketchOnFace<br>[502, 537, 7]"]
|
||||
102["Sweep Extrusion<br>[508, 544, 2]"]
|
||||
103["Sweep Extrusion<br>[706, 743, 2]"]
|
||||
104["Sweep Extrusion<br>[1038, 1078, 3]"]
|
||||
105["Sweep Extrusion<br>[1038, 1078, 3]"]
|
||||
106["Sweep Extrusion<br>[1287, 1324, 3]"]
|
||||
107["Sweep Extrusion<br>[1287, 1324, 3]"]
|
||||
108["Sweep Extrusion<br>[1454, 1492, 3]"]
|
||||
109["Sweep Extrusion<br>[1454, 1492, 3]"]
|
||||
110["Sweep Extrusion<br>[1669, 1711, 3]"]
|
||||
111["Sweep Extrusion<br>[1669, 1711, 3]"]
|
||||
112["Sweep Extrusion<br>[489, 522, 4]"]
|
||||
113["Sweep Extrusion<br>[679, 716, 4]"]
|
||||
114["Sweep Extrusion<br>[535, 568, 5]"]
|
||||
115["Sweep Extrusion<br>[1199, 1239, 5]"]
|
||||
116["Sweep Extrusion<br>[1407, 1435, 5]"]
|
||||
117["Sweep Extrusion<br>[844, 877, 6]"]
|
||||
118["Sweep Extrusion<br>[1045, 1082, 6]"]
|
||||
119["Sweep Extrusion<br>[409, 440, 7]"]
|
||||
120["Sweep Extrusion<br>[409, 440, 7]"]
|
||||
121["Sweep Extrusion<br>[608, 640, 7]"]
|
||||
122["Sweep Extrusion<br>[608, 640, 7]"]
|
||||
123[Wall]
|
||||
124[Wall]
|
||||
125[Wall]
|
||||
@ -283,8 +283,8 @@ flowchart LR
|
||||
235["SweepEdge Adjacent"]
|
||||
236["SweepEdge Adjacent"]
|
||||
237["SweepEdge Adjacent"]
|
||||
238["EdgeCut Fillet<br>[558, 624, 5]"]
|
||||
239["EdgeCut Fillet<br>[558, 624, 5]"]
|
||||
238["EdgeCut Fillet<br>[576, 642, 5]"]
|
||||
239["EdgeCut Fillet<br>[576, 642, 5]"]
|
||||
1 --- 23
|
||||
2 --- 25
|
||||
3 --- 26
|
||||
|
||||
@ -3078,6 +3078,31 @@ description: Result of parsing pipe-flange-assembly.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,17 +1,17 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path2 [Path]
|
||||
2["Path<br>[426, 497, 0]"]
|
||||
4["Segment<br>[426, 497, 0]"]
|
||||
2["Path<br>[444, 515, 0]"]
|
||||
4["Segment<br>[444, 515, 0]"]
|
||||
6[Solid2d]
|
||||
end
|
||||
subgraph path3 [Path]
|
||||
3["Path<br>[557, 628, 0]"]
|
||||
5["Segment<br>[557, 628, 0]"]
|
||||
3["Path<br>[575, 646, 0]"]
|
||||
5["Segment<br>[575, 646, 0]"]
|
||||
7[Solid2d]
|
||||
end
|
||||
1["Plane<br>[349, 366, 0]"]
|
||||
8["Sweep Revolve<br>[785, 834, 0]"]
|
||||
1["Plane<br>[367, 384, 0]"]
|
||||
8["Sweep Revolve<br>[803, 852, 0]"]
|
||||
9[Wall]
|
||||
10["Cap Start"]
|
||||
11["Cap End"]
|
||||
|
||||
@ -805,6 +805,31 @@ description: Result of parsing pipe-with-bend.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,19 +1,19 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path3 [Path]
|
||||
3["Path<br>[241, 299, 0]"]
|
||||
5["Segment<br>[241, 299, 0]"]
|
||||
3["Path<br>[259, 317, 0]"]
|
||||
5["Segment<br>[259, 317, 0]"]
|
||||
8[Solid2d]
|
||||
end
|
||||
subgraph path4 [Path]
|
||||
4["Path<br>[435, 490, 0]"]
|
||||
6["Segment<br>[435, 490, 0]"]
|
||||
4["Path<br>[453, 508, 0]"]
|
||||
6["Segment<br>[453, 508, 0]"]
|
||||
7[Solid2d]
|
||||
end
|
||||
1["Plane<br>[218, 235, 0]"]
|
||||
2["StartSketchOnFace<br>[394, 429, 0]"]
|
||||
9["Sweep Extrusion<br>[305, 336, 0]"]
|
||||
10["Sweep Extrusion<br>[496, 528, 0]"]
|
||||
1["Plane<br>[236, 253, 0]"]
|
||||
2["StartSketchOnFace<br>[412, 447, 0]"]
|
||||
9["Sweep Extrusion<br>[323, 354, 0]"]
|
||||
10["Sweep Extrusion<br>[514, 546, 0]"]
|
||||
11[Wall]
|
||||
12[Wall]
|
||||
13["Cap Start"]
|
||||
|
||||
@ -744,6 +744,31 @@ description: Result of parsing pipe.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -1,112 +1,112 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path9 [Path]
|
||||
9["Path<br>[362, 400, 0]"]
|
||||
17["Segment<br>[406, 439, 0]"]
|
||||
18["Segment<br>[445, 508, 0]"]
|
||||
19["Segment<br>[514, 541, 0]"]
|
||||
20["Segment<br>[547, 577, 0]"]
|
||||
21["Segment<br>[583, 618, 0]"]
|
||||
22["Segment<br>[624, 697, 0]"]
|
||||
23["Segment<br>[703, 733, 0]"]
|
||||
24["Segment<br>[739, 797, 0]"]
|
||||
25["Segment<br>[803, 830, 0]"]
|
||||
26["Segment<br>[836, 858, 0]"]
|
||||
27["Segment<br>[864, 899, 0]"]
|
||||
28["Segment<br>[905, 951, 0]"]
|
||||
29["Segment<br>[957, 964, 0]"]
|
||||
9["Path<br>[380, 418, 0]"]
|
||||
17["Segment<br>[424, 457, 0]"]
|
||||
18["Segment<br>[463, 526, 0]"]
|
||||
19["Segment<br>[532, 559, 0]"]
|
||||
20["Segment<br>[565, 595, 0]"]
|
||||
21["Segment<br>[601, 636, 0]"]
|
||||
22["Segment<br>[642, 715, 0]"]
|
||||
23["Segment<br>[721, 751, 0]"]
|
||||
24["Segment<br>[757, 815, 0]"]
|
||||
25["Segment<br>[821, 848, 0]"]
|
||||
26["Segment<br>[854, 876, 0]"]
|
||||
27["Segment<br>[882, 917, 0]"]
|
||||
28["Segment<br>[923, 969, 0]"]
|
||||
29["Segment<br>[975, 982, 0]"]
|
||||
80[Solid2d]
|
||||
end
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[1129, 1167, 0]"]
|
||||
30["Segment<br>[1173, 1206, 0]"]
|
||||
31["Segment<br>[1212, 1275, 0]"]
|
||||
32["Segment<br>[1281, 1308, 0]"]
|
||||
33["Segment<br>[1314, 1344, 0]"]
|
||||
34["Segment<br>[1350, 1385, 0]"]
|
||||
35["Segment<br>[1391, 1464, 0]"]
|
||||
36["Segment<br>[1470, 1500, 0]"]
|
||||
37["Segment<br>[1506, 1564, 0]"]
|
||||
38["Segment<br>[1570, 1597, 0]"]
|
||||
39["Segment<br>[1603, 1625, 0]"]
|
||||
40["Segment<br>[1631, 1666, 0]"]
|
||||
41["Segment<br>[1672, 1718, 0]"]
|
||||
42["Segment<br>[1724, 1731, 0]"]
|
||||
10["Path<br>[1147, 1185, 0]"]
|
||||
30["Segment<br>[1191, 1224, 0]"]
|
||||
31["Segment<br>[1230, 1293, 0]"]
|
||||
32["Segment<br>[1299, 1326, 0]"]
|
||||
33["Segment<br>[1332, 1362, 0]"]
|
||||
34["Segment<br>[1368, 1403, 0]"]
|
||||
35["Segment<br>[1409, 1482, 0]"]
|
||||
36["Segment<br>[1488, 1518, 0]"]
|
||||
37["Segment<br>[1524, 1582, 0]"]
|
||||
38["Segment<br>[1588, 1615, 0]"]
|
||||
39["Segment<br>[1621, 1643, 0]"]
|
||||
40["Segment<br>[1649, 1684, 0]"]
|
||||
41["Segment<br>[1690, 1736, 0]"]
|
||||
42["Segment<br>[1742, 1749, 0]"]
|
||||
78[Solid2d]
|
||||
end
|
||||
subgraph path11 [Path]
|
||||
11["Path<br>[1995, 2020, 0]"]
|
||||
43["Segment<br>[2026, 2068, 0]"]
|
||||
44["Segment<br>[2074, 2114, 0]"]
|
||||
45["Segment<br>[2120, 2127, 0]"]
|
||||
11["Path<br>[2013, 2038, 0]"]
|
||||
43["Segment<br>[2044, 2086, 0]"]
|
||||
44["Segment<br>[2092, 2132, 0]"]
|
||||
45["Segment<br>[2138, 2145, 0]"]
|
||||
79[Solid2d]
|
||||
end
|
||||
subgraph path12 [Path]
|
||||
12["Path<br>[2261, 2286, 0]"]
|
||||
46["Segment<br>[2292, 2319, 0]"]
|
||||
47["Segment<br>[2325, 2359, 0]"]
|
||||
48["Segment<br>[2365, 2400, 0]"]
|
||||
49["Segment<br>[2406, 2487, 0]"]
|
||||
50["Segment<br>[2493, 2522, 0]"]
|
||||
51["Segment<br>[2528, 2581, 0]"]
|
||||
52["Segment<br>[2587, 2614, 0]"]
|
||||
53["Segment<br>[2620, 2649, 0]"]
|
||||
54["Segment<br>[2655, 2788, 0]"]
|
||||
55["Segment<br>[2794, 2848, 0]"]
|
||||
56["Segment<br>[2854, 2876, 0]"]
|
||||
57["Segment<br>[2882, 2901, 0]"]
|
||||
12["Path<br>[2279, 2304, 0]"]
|
||||
46["Segment<br>[2310, 2337, 0]"]
|
||||
47["Segment<br>[2343, 2377, 0]"]
|
||||
48["Segment<br>[2383, 2418, 0]"]
|
||||
49["Segment<br>[2424, 2505, 0]"]
|
||||
50["Segment<br>[2511, 2540, 0]"]
|
||||
51["Segment<br>[2546, 2599, 0]"]
|
||||
52["Segment<br>[2605, 2632, 0]"]
|
||||
53["Segment<br>[2638, 2667, 0]"]
|
||||
54["Segment<br>[2673, 2806, 0]"]
|
||||
55["Segment<br>[2812, 2866, 0]"]
|
||||
56["Segment<br>[2872, 2894, 0]"]
|
||||
57["Segment<br>[2900, 2919, 0]"]
|
||||
82[Solid2d]
|
||||
end
|
||||
subgraph path13 [Path]
|
||||
13["Path<br>[3161, 3186, 0]"]
|
||||
58["Segment<br>[3192, 3219, 0]"]
|
||||
59["Segment<br>[3225, 3257, 0]"]
|
||||
60["Segment<br>[3263, 3403, 0]"]
|
||||
61["Segment<br>[3409, 3464, 0]"]
|
||||
62["Segment<br>[3470, 3506, 0]"]
|
||||
63["Segment<br>[3512, 3519, 0]"]
|
||||
13["Path<br>[3179, 3204, 0]"]
|
||||
58["Segment<br>[3210, 3237, 0]"]
|
||||
59["Segment<br>[3243, 3275, 0]"]
|
||||
60["Segment<br>[3281, 3421, 0]"]
|
||||
61["Segment<br>[3427, 3482, 0]"]
|
||||
62["Segment<br>[3488, 3524, 0]"]
|
||||
63["Segment<br>[3530, 3537, 0]"]
|
||||
76[Solid2d]
|
||||
end
|
||||
subgraph path14 [Path]
|
||||
14["Path<br>[3614, 3664, 0]"]
|
||||
64["Segment<br>[3670, 3702, 0]"]
|
||||
65["Segment<br>[3708, 3735, 0]"]
|
||||
66["Segment<br>[3741, 3763, 0]"]
|
||||
67["Segment<br>[3769, 3776, 0]"]
|
||||
14["Path<br>[3632, 3682, 0]"]
|
||||
64["Segment<br>[3688, 3720, 0]"]
|
||||
65["Segment<br>[3726, 3753, 0]"]
|
||||
66["Segment<br>[3759, 3781, 0]"]
|
||||
67["Segment<br>[3787, 3794, 0]"]
|
||||
81[Solid2d]
|
||||
end
|
||||
subgraph path15 [Path]
|
||||
15["Path<br>[3869, 3894, 0]"]
|
||||
68["Segment<br>[3900, 3934, 0]"]
|
||||
69["Segment<br>[3940, 3967, 0]"]
|
||||
70["Segment<br>[3973, 3995, 0]"]
|
||||
71["Segment<br>[4001, 4008, 0]"]
|
||||
15["Path<br>[3887, 3912, 0]"]
|
||||
68["Segment<br>[3918, 3952, 0]"]
|
||||
69["Segment<br>[3958, 3985, 0]"]
|
||||
70["Segment<br>[3991, 4013, 0]"]
|
||||
71["Segment<br>[4019, 4026, 0]"]
|
||||
77[Solid2d]
|
||||
end
|
||||
subgraph path16 [Path]
|
||||
16["Path<br>[4301, 4350, 0]"]
|
||||
72["Segment<br>[4356, 4388, 0]"]
|
||||
73["Segment<br>[4394, 4442, 0]"]
|
||||
74["Segment<br>[4448, 4482, 0]"]
|
||||
75["Segment<br>[4488, 4495, 0]"]
|
||||
16["Path<br>[4319, 4368, 0]"]
|
||||
72["Segment<br>[4374, 4406, 0]"]
|
||||
73["Segment<br>[4412, 4460, 0]"]
|
||||
74["Segment<br>[4466, 4500, 0]"]
|
||||
75["Segment<br>[4506, 4513, 0]"]
|
||||
83[Solid2d]
|
||||
end
|
||||
1["Plane<br>[338, 356, 0]"]
|
||||
2["Plane<br>[1105, 1123, 0]"]
|
||||
3["Plane<br>[1963, 1989, 0]"]
|
||||
4["Plane<br>[3128, 3155, 0]"]
|
||||
5["Plane<br>[4268, 4295, 0]"]
|
||||
6["StartSketchOnFace<br>[2219, 2255, 0]"]
|
||||
7["StartSketchOnFace<br>[3827, 3863, 0]"]
|
||||
8["StartSketchOnFace<br>[3570, 3608, 0]"]
|
||||
84["Sweep Revolve<br>[975, 1091, 0]"]
|
||||
85["Sweep Extrusion<br>[1737, 1774, 0]"]
|
||||
86["Sweep Extrusion<br>[2133, 2164, 0]"]
|
||||
87["Sweep Extrusion<br>[2907, 2938, 0]"]
|
||||
88["Sweep Extrusion<br>[3525, 3556, 0]"]
|
||||
89["Sweep Extrusion<br>[3782, 3813, 0]"]
|
||||
90["Sweep Extrusion<br>[4014, 4064, 0]"]
|
||||
91["Sweep Extrusion<br>[4501, 4533, 0]"]
|
||||
1["Plane<br>[356, 374, 0]"]
|
||||
2["Plane<br>[1123, 1141, 0]"]
|
||||
3["Plane<br>[1981, 2007, 0]"]
|
||||
4["Plane<br>[3146, 3173, 0]"]
|
||||
5["Plane<br>[4286, 4313, 0]"]
|
||||
6["StartSketchOnFace<br>[2237, 2273, 0]"]
|
||||
7["StartSketchOnFace<br>[3845, 3881, 0]"]
|
||||
8["StartSketchOnFace<br>[3588, 3626, 0]"]
|
||||
84["Sweep Revolve<br>[993, 1109, 0]"]
|
||||
85["Sweep Extrusion<br>[1755, 1792, 0]"]
|
||||
86["Sweep Extrusion<br>[2151, 2182, 0]"]
|
||||
87["Sweep Extrusion<br>[2925, 2956, 0]"]
|
||||
88["Sweep Extrusion<br>[3543, 3574, 0]"]
|
||||
89["Sweep Extrusion<br>[3800, 3831, 0]"]
|
||||
90["Sweep Extrusion<br>[4032, 4082, 0]"]
|
||||
91["Sweep Extrusion<br>[4519, 4551, 0]"]
|
||||
92[Wall]
|
||||
93[Wall]
|
||||
94[Wall]
|
||||
|
||||
@ -7533,6 +7533,31 @@ description: Result of parsing poopy-shoe.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -498,9 +498,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 501,
|
||||
"end": 507,
|
||||
"start": 501,
|
||||
"commentStart": 519,
|
||||
"end": 525,
|
||||
"start": 519,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -617,9 +617,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 501,
|
||||
"end": 507,
|
||||
"start": 501,
|
||||
"commentStart": 519,
|
||||
"end": 525,
|
||||
"start": 519,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -966,9 +966,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 501,
|
||||
"end": 507,
|
||||
"start": 501,
|
||||
"commentStart": 519,
|
||||
"end": 525,
|
||||
"start": 519,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -1271,9 +1271,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1268,
|
||||
"end": 1274,
|
||||
"start": 1268,
|
||||
"commentStart": 1286,
|
||||
"end": 1292,
|
||||
"start": 1286,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -1390,9 +1390,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1268,
|
||||
"end": 1274,
|
||||
"start": 1268,
|
||||
"commentStart": 1286,
|
||||
"end": 1292,
|
||||
"start": 1286,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -1932,9 +1932,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2894,
|
||||
"end": 2900,
|
||||
"start": 2894,
|
||||
"commentStart": 2912,
|
||||
"end": 2918,
|
||||
"start": 2912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -2174,9 +2174,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2894,
|
||||
"end": 2900,
|
||||
"start": 2894,
|
||||
"commentStart": 2912,
|
||||
"end": 2918,
|
||||
"start": 2912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -2228,9 +2228,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1268,
|
||||
"end": 1274,
|
||||
"start": 1268,
|
||||
"commentStart": 1286,
|
||||
"end": 1292,
|
||||
"start": 1286,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -2347,9 +2347,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1268,
|
||||
"end": 1274,
|
||||
"start": 1268,
|
||||
"commentStart": 1286,
|
||||
"end": 1292,
|
||||
"start": 1286,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -2723,9 +2723,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 3499,
|
||||
"end": 3505,
|
||||
"start": 3499,
|
||||
"commentStart": 3517,
|
||||
"end": 3523,
|
||||
"start": 3517,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -2839,9 +2839,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
1.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 3499,
|
||||
"end": 3505,
|
||||
"start": 3499,
|
||||
"commentStart": 3517,
|
||||
"end": 3523,
|
||||
"start": 3517,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -3119,9 +3119,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 3499,
|
||||
"end": 3505,
|
||||
"start": 3499,
|
||||
"commentStart": 3517,
|
||||
"end": 3523,
|
||||
"start": 3517,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -3235,9 +3235,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
1.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 3499,
|
||||
"end": 3505,
|
||||
"start": 3499,
|
||||
"commentStart": 3517,
|
||||
"end": 3523,
|
||||
"start": 3517,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -3600,9 +3600,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2894,
|
||||
"end": 2900,
|
||||
"start": 2894,
|
||||
"commentStart": 2912,
|
||||
"end": 2918,
|
||||
"start": 2912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -3842,9 +3842,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2894,
|
||||
"end": 2900,
|
||||
"start": 2894,
|
||||
"commentStart": 2912,
|
||||
"end": 2918,
|
||||
"start": 2912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -3896,9 +3896,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1268,
|
||||
"end": 1274,
|
||||
"start": 1268,
|
||||
"commentStart": 1286,
|
||||
"end": 1292,
|
||||
"start": 1286,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -4015,9 +4015,9 @@ description: Variables in memory after executing poopy-shoe.kcl
|
||||
0.0
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1268,
|
||||
"end": 1274,
|
||||
"start": 1268,
|
||||
"commentStart": 1286,
|
||||
"end": 1292,
|
||||
"start": 1286,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
|
||||
@ -1,65 +1,65 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path5 [Path]
|
||||
5["Path<br>[540, 583, 0]"]
|
||||
9["Segment<br>[589, 642, 0]"]
|
||||
10["Segment<br>[648, 759, 0]"]
|
||||
11["Segment<br>[765, 818, 0]"]
|
||||
12["Segment<br>[824, 871, 0]"]
|
||||
13["Segment<br>[877, 973, 0]"]
|
||||
14["Segment<br>[979, 1050, 0]"]
|
||||
15["Segment<br>[1056, 1107, 0]"]
|
||||
16["Segment<br>[1113, 1166, 0]"]
|
||||
17["Segment<br>[1172, 1241, 0]"]
|
||||
18["Segment<br>[1247, 1283, 0]"]
|
||||
19["Segment<br>[1289, 1319, 0]"]
|
||||
20["Segment<br>[1325, 1355, 0]"]
|
||||
21["Segment<br>[1361, 1391, 0]"]
|
||||
22["Segment<br>[1397, 1427, 0]"]
|
||||
23["Segment<br>[1433, 1462, 0]"]
|
||||
24["Segment<br>[1468, 1498, 0]"]
|
||||
25["Segment<br>[1504, 1533, 0]"]
|
||||
26["Segment<br>[1539, 1568, 0]"]
|
||||
27["Segment<br>[1574, 1637, 0]"]
|
||||
28["Segment<br>[1643, 1699, 0]"]
|
||||
29["Segment<br>[1705, 1712, 0]"]
|
||||
5["Path<br>[558, 601, 0]"]
|
||||
9["Segment<br>[607, 660, 0]"]
|
||||
10["Segment<br>[666, 777, 0]"]
|
||||
11["Segment<br>[783, 836, 0]"]
|
||||
12["Segment<br>[842, 889, 0]"]
|
||||
13["Segment<br>[895, 991, 0]"]
|
||||
14["Segment<br>[997, 1068, 0]"]
|
||||
15["Segment<br>[1074, 1125, 0]"]
|
||||
16["Segment<br>[1131, 1184, 0]"]
|
||||
17["Segment<br>[1190, 1259, 0]"]
|
||||
18["Segment<br>[1265, 1301, 0]"]
|
||||
19["Segment<br>[1307, 1337, 0]"]
|
||||
20["Segment<br>[1343, 1373, 0]"]
|
||||
21["Segment<br>[1379, 1409, 0]"]
|
||||
22["Segment<br>[1415, 1445, 0]"]
|
||||
23["Segment<br>[1451, 1480, 0]"]
|
||||
24["Segment<br>[1486, 1516, 0]"]
|
||||
25["Segment<br>[1522, 1551, 0]"]
|
||||
26["Segment<br>[1557, 1586, 0]"]
|
||||
27["Segment<br>[1592, 1655, 0]"]
|
||||
28["Segment<br>[1661, 1717, 0]"]
|
||||
29["Segment<br>[1723, 1730, 0]"]
|
||||
47[Solid2d]
|
||||
end
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[1872, 1916, 0]"]
|
||||
30["Segment<br>[1922, 2002, 0]"]
|
||||
31["Segment<br>[2008, 2118, 0]"]
|
||||
32["Segment<br>[2124, 2241, 0]"]
|
||||
33["Segment<br>[2247, 2303, 0]"]
|
||||
34["Segment<br>[2309, 2316, 0]"]
|
||||
6["Path<br>[1890, 1934, 0]"]
|
||||
30["Segment<br>[1940, 2020, 0]"]
|
||||
31["Segment<br>[2026, 2136, 0]"]
|
||||
32["Segment<br>[2142, 2259, 0]"]
|
||||
33["Segment<br>[2265, 2321, 0]"]
|
||||
34["Segment<br>[2327, 2334, 0]"]
|
||||
45[Solid2d]
|
||||
end
|
||||
subgraph path7 [Path]
|
||||
7["Path<br>[2477, 2522, 0]"]
|
||||
35["Segment<br>[2528, 2606, 0]"]
|
||||
36["Segment<br>[2612, 2722, 0]"]
|
||||
37["Segment<br>[2728, 2845, 0]"]
|
||||
38["Segment<br>[2851, 2907, 0]"]
|
||||
39["Segment<br>[2913, 2920, 0]"]
|
||||
7["Path<br>[2495, 2540, 0]"]
|
||||
35["Segment<br>[2546, 2624, 0]"]
|
||||
36["Segment<br>[2630, 2740, 0]"]
|
||||
37["Segment<br>[2746, 2863, 0]"]
|
||||
38["Segment<br>[2869, 2925, 0]"]
|
||||
39["Segment<br>[2931, 2938, 0]"]
|
||||
46[Solid2d]
|
||||
end
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[3079, 3124, 0]"]
|
||||
40["Segment<br>[3130, 3215, 0]"]
|
||||
41["Segment<br>[3221, 3331, 0]"]
|
||||
42["Segment<br>[3337, 3454, 0]"]
|
||||
43["Segment<br>[3460, 3516, 0]"]
|
||||
44["Segment<br>[3522, 3529, 0]"]
|
||||
8["Path<br>[3097, 3142, 0]"]
|
||||
40["Segment<br>[3148, 3233, 0]"]
|
||||
41["Segment<br>[3239, 3349, 0]"]
|
||||
42["Segment<br>[3355, 3472, 0]"]
|
||||
43["Segment<br>[3478, 3534, 0]"]
|
||||
44["Segment<br>[3540, 3547, 0]"]
|
||||
48[Solid2d]
|
||||
end
|
||||
1["Plane<br>[517, 534, 0]"]
|
||||
2["StartSketchOnFace<br>[2432, 2471, 0]"]
|
||||
3["StartSketchOnFace<br>[1827, 1866, 0]"]
|
||||
4["StartSketchOnFace<br>[3036, 3073, 0]"]
|
||||
49["Sweep Extrusion<br>[1755, 1785, 0]"]
|
||||
50["Sweep Extrusion<br>[2360, 2391, 0]"]
|
||||
51["Sweep Extrusion<br>[2963, 2994, 0]"]
|
||||
52["Sweep Extrusion<br>[3573, 3603, 0]"]
|
||||
1["Plane<br>[535, 552, 0]"]
|
||||
2["StartSketchOnFace<br>[2450, 2489, 0]"]
|
||||
3["StartSketchOnFace<br>[1845, 1884, 0]"]
|
||||
4["StartSketchOnFace<br>[3054, 3091, 0]"]
|
||||
49["Sweep Extrusion<br>[1773, 1803, 0]"]
|
||||
50["Sweep Extrusion<br>[2378, 2409, 0]"]
|
||||
51["Sweep Extrusion<br>[2981, 3012, 0]"]
|
||||
52["Sweep Extrusion<br>[3591, 3621, 0]"]
|
||||
53[Wall]
|
||||
54[Wall]
|
||||
55[Wall]
|
||||
|
||||
@ -5073,6 +5073,31 @@ description: Result of parsing router-template-cross-bar.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,46 +1,46 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path4 [Path]
|
||||
4["Path<br>[539, 582, 0]"]
|
||||
7["Segment<br>[588, 627, 0]"]
|
||||
8["Segment<br>[633, 698, 0]"]
|
||||
9["Segment<br>[704, 780, 0]"]
|
||||
10["Segment<br>[786, 855, 0]"]
|
||||
11["Segment<br>[861, 901, 0]"]
|
||||
12["Segment<br>[907, 943, 0]"]
|
||||
13["Segment<br>[983, 1013, 0]"]
|
||||
14["Segment<br>[1019, 1048, 0]"]
|
||||
15["Segment<br>[1054, 1083, 0]"]
|
||||
16["Segment<br>[1089, 1118, 0]"]
|
||||
17["Segment<br>[1124, 1191, 0]"]
|
||||
18["Segment<br>[1197, 1253, 0]"]
|
||||
19["Segment<br>[1259, 1266, 0]"]
|
||||
4["Path<br>[557, 600, 0]"]
|
||||
7["Segment<br>[606, 645, 0]"]
|
||||
8["Segment<br>[651, 716, 0]"]
|
||||
9["Segment<br>[722, 798, 0]"]
|
||||
10["Segment<br>[804, 873, 0]"]
|
||||
11["Segment<br>[879, 919, 0]"]
|
||||
12["Segment<br>[925, 961, 0]"]
|
||||
13["Segment<br>[1001, 1031, 0]"]
|
||||
14["Segment<br>[1037, 1066, 0]"]
|
||||
15["Segment<br>[1072, 1101, 0]"]
|
||||
16["Segment<br>[1107, 1136, 0]"]
|
||||
17["Segment<br>[1142, 1209, 0]"]
|
||||
18["Segment<br>[1215, 1271, 0]"]
|
||||
19["Segment<br>[1277, 1284, 0]"]
|
||||
31[Solid2d]
|
||||
end
|
||||
subgraph path5 [Path]
|
||||
5["Path<br>[1426, 1526, 0]"]
|
||||
20["Segment<br>[1532, 1579, 0]"]
|
||||
21["Segment<br>[1585, 1697, 0]"]
|
||||
22["Segment<br>[1703, 1820, 0]"]
|
||||
23["Segment<br>[1826, 1882, 0]"]
|
||||
24["Segment<br>[1888, 1895, 0]"]
|
||||
5["Path<br>[1444, 1544, 0]"]
|
||||
20["Segment<br>[1550, 1597, 0]"]
|
||||
21["Segment<br>[1603, 1715, 0]"]
|
||||
22["Segment<br>[1721, 1838, 0]"]
|
||||
23["Segment<br>[1844, 1900, 0]"]
|
||||
24["Segment<br>[1906, 1913, 0]"]
|
||||
30[Solid2d]
|
||||
end
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[2057, 2156, 0]"]
|
||||
25["Segment<br>[2162, 2208, 0]"]
|
||||
26["Segment<br>[2214, 2297, 0]"]
|
||||
27["Segment<br>[2303, 2391, 0]"]
|
||||
28["Segment<br>[2397, 2453, 0]"]
|
||||
29["Segment<br>[2459, 2466, 0]"]
|
||||
6["Path<br>[2075, 2174, 0]"]
|
||||
25["Segment<br>[2180, 2226, 0]"]
|
||||
26["Segment<br>[2232, 2315, 0]"]
|
||||
27["Segment<br>[2321, 2409, 0]"]
|
||||
28["Segment<br>[2415, 2471, 0]"]
|
||||
29["Segment<br>[2477, 2484, 0]"]
|
||||
32[Solid2d]
|
||||
end
|
||||
1["Plane<br>[516, 533, 0]"]
|
||||
2["StartSketchOnFace<br>[1381, 1420, 0]"]
|
||||
3["StartSketchOnFace<br>[2012, 2051, 0]"]
|
||||
33["Sweep Extrusion<br>[1309, 1339, 0]"]
|
||||
34["Sweep Extrusion<br>[1939, 1971, 0]"]
|
||||
35["Sweep Extrusion<br>[2509, 2541, 0]"]
|
||||
1["Plane<br>[534, 551, 0]"]
|
||||
2["StartSketchOnFace<br>[1399, 1438, 0]"]
|
||||
3["StartSketchOnFace<br>[2030, 2069, 0]"]
|
||||
33["Sweep Extrusion<br>[1327, 1357, 0]"]
|
||||
34["Sweep Extrusion<br>[1957, 1989, 0]"]
|
||||
35["Sweep Extrusion<br>[2527, 2559, 0]"]
|
||||
36[Wall]
|
||||
37[Wall]
|
||||
38[Wall]
|
||||
|
||||
@ -3611,6 +3611,31 @@ description: Result of parsing router-template-slate.kcl
|
||||
"type": "Name",
|
||||
"type": "Name"
|
||||
}
|
||||
},
|
||||
{
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"key": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"name": "kclVersion",
|
||||
"start": 0,
|
||||
"type": "Identifier"
|
||||
},
|
||||
"start": 0,
|
||||
"type": "ObjectProperty",
|
||||
"value": {
|
||||
"commentStart": 0,
|
||||
"end": 0,
|
||||
"raw": "1.0",
|
||||
"start": 0,
|
||||
"type": "Literal",
|
||||
"type": "Literal",
|
||||
"value": {
|
||||
"value": 1.0,
|
||||
"suffix": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"start": 0,
|
||||
|
||||
@ -28,9 +28,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 620,
|
||||
"end": 626,
|
||||
"start": 620,
|
||||
"commentStart": 638,
|
||||
"end": 644,
|
||||
"start": 638,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -48,9 +48,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 773,
|
||||
"end": 779,
|
||||
"start": 773,
|
||||
"commentStart": 791,
|
||||
"end": 797,
|
||||
"start": 791,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -61,9 +61,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 848,
|
||||
"end": 854,
|
||||
"start": 848,
|
||||
"commentStart": 866,
|
||||
"end": 872,
|
||||
"start": 866,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -74,9 +74,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 894,
|
||||
"end": 900,
|
||||
"start": 894,
|
||||
"commentStart": 912,
|
||||
"end": 918,
|
||||
"start": 912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -139,9 +139,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
1.107
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 620,
|
||||
"end": 626,
|
||||
"start": 620,
|
||||
"commentStart": 638,
|
||||
"end": 644,
|
||||
"start": 638,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -189,9 +189,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
0.7874
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 773,
|
||||
"end": 779,
|
||||
"start": 773,
|
||||
"commentStart": 791,
|
||||
"end": 797,
|
||||
"start": 791,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -214,9 +214,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 848,
|
||||
"end": 854,
|
||||
"start": 848,
|
||||
"commentStart": 866,
|
||||
"end": 872,
|
||||
"start": 866,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -239,9 +239,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 894,
|
||||
"end": 900,
|
||||
"start": 894,
|
||||
"commentStart": 912,
|
||||
"end": 918,
|
||||
"start": 912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -264,9 +264,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-4.8226
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 936,
|
||||
"end": 942,
|
||||
"start": 936,
|
||||
"commentStart": 954,
|
||||
"end": 960,
|
||||
"start": 954,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -516,9 +516,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1557,
|
||||
"end": 1578,
|
||||
"start": 1557,
|
||||
"commentStart": 1575,
|
||||
"end": 1596,
|
||||
"start": 1575,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA001"
|
||||
},
|
||||
@ -529,9 +529,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1675,
|
||||
"end": 1696,
|
||||
"start": 1675,
|
||||
"commentStart": 1693,
|
||||
"end": 1714,
|
||||
"start": 1693,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB001"
|
||||
},
|
||||
@ -542,9 +542,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 1798,
|
||||
"end": 1819,
|
||||
"start": 1798,
|
||||
"commentStart": 1816,
|
||||
"end": 1837,
|
||||
"start": 1816,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC001"
|
||||
},
|
||||
@ -572,9 +572,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1557,
|
||||
"end": 1578,
|
||||
"start": 1557,
|
||||
"commentStart": 1575,
|
||||
"end": 1596,
|
||||
"start": 1575,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA001"
|
||||
},
|
||||
@ -597,9 +597,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1675,
|
||||
"end": 1696,
|
||||
"start": 1675,
|
||||
"commentStart": 1693,
|
||||
"end": 1714,
|
||||
"start": 1693,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB001"
|
||||
},
|
||||
@ -622,9 +622,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-3.6415
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1798,
|
||||
"end": 1819,
|
||||
"start": 1798,
|
||||
"commentStart": 1816,
|
||||
"end": 1837,
|
||||
"start": 1816,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC001"
|
||||
},
|
||||
@ -707,9 +707,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 620,
|
||||
"end": 626,
|
||||
"start": 620,
|
||||
"commentStart": 638,
|
||||
"end": 644,
|
||||
"start": 638,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -727,9 +727,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 773,
|
||||
"end": 779,
|
||||
"start": 773,
|
||||
"commentStart": 791,
|
||||
"end": 797,
|
||||
"start": 791,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -740,9 +740,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 848,
|
||||
"end": 854,
|
||||
"start": 848,
|
||||
"commentStart": 866,
|
||||
"end": 872,
|
||||
"start": 866,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -753,9 +753,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 894,
|
||||
"end": 900,
|
||||
"start": 894,
|
||||
"commentStart": 912,
|
||||
"end": 918,
|
||||
"start": 912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -818,9 +818,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
1.107
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 620,
|
||||
"end": 626,
|
||||
"start": 620,
|
||||
"commentStart": 638,
|
||||
"end": 644,
|
||||
"start": 638,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -868,9 +868,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
0.7874
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 773,
|
||||
"end": 779,
|
||||
"start": 773,
|
||||
"commentStart": 791,
|
||||
"end": 797,
|
||||
"start": 791,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -893,9 +893,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 848,
|
||||
"end": 854,
|
||||
"start": 848,
|
||||
"commentStart": 866,
|
||||
"end": 872,
|
||||
"start": 866,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -918,9 +918,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 894,
|
||||
"end": 900,
|
||||
"start": 894,
|
||||
"commentStart": 912,
|
||||
"end": 918,
|
||||
"start": 912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -943,9 +943,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-4.8226
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 936,
|
||||
"end": 942,
|
||||
"start": 936,
|
||||
"commentStart": 954,
|
||||
"end": 960,
|
||||
"start": 954,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -1245,9 +1245,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 2186,
|
||||
"end": 2207,
|
||||
"start": 2186,
|
||||
"commentStart": 2204,
|
||||
"end": 2225,
|
||||
"start": 2204,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA002"
|
||||
},
|
||||
@ -1289,9 +1289,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2186,
|
||||
"end": 2207,
|
||||
"start": 2186,
|
||||
"commentStart": 2204,
|
||||
"end": 2225,
|
||||
"start": 2204,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA002"
|
||||
},
|
||||
@ -1412,9 +1412,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 620,
|
||||
"end": 626,
|
||||
"start": 620,
|
||||
"commentStart": 638,
|
||||
"end": 644,
|
||||
"start": 638,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -1432,9 +1432,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 773,
|
||||
"end": 779,
|
||||
"start": 773,
|
||||
"commentStart": 791,
|
||||
"end": 797,
|
||||
"start": 791,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -1445,9 +1445,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 848,
|
||||
"end": 854,
|
||||
"start": 848,
|
||||
"commentStart": 866,
|
||||
"end": 872,
|
||||
"start": 866,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -1458,9 +1458,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 894,
|
||||
"end": 900,
|
||||
"start": 894,
|
||||
"commentStart": 912,
|
||||
"end": 918,
|
||||
"start": 912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -1523,9 +1523,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
1.107
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 620,
|
||||
"end": 626,
|
||||
"start": 620,
|
||||
"commentStart": 638,
|
||||
"end": 644,
|
||||
"start": 638,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -1573,9 +1573,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
0.7874
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 773,
|
||||
"end": 779,
|
||||
"start": 773,
|
||||
"commentStart": 791,
|
||||
"end": 797,
|
||||
"start": 791,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -1598,9 +1598,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 848,
|
||||
"end": 854,
|
||||
"start": 848,
|
||||
"commentStart": 866,
|
||||
"end": 872,
|
||||
"start": 866,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -1623,9 +1623,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 894,
|
||||
"end": 900,
|
||||
"start": 894,
|
||||
"commentStart": 912,
|
||||
"end": 918,
|
||||
"start": 912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -1648,9 +1648,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-4.8226
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 936,
|
||||
"end": 942,
|
||||
"start": 936,
|
||||
"commentStart": 954,
|
||||
"end": 960,
|
||||
"start": 954,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -2056,9 +2056,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
1.107
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 620,
|
||||
"end": 626,
|
||||
"start": 620,
|
||||
"commentStart": 638,
|
||||
"end": 644,
|
||||
"start": 638,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -2106,9 +2106,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
0.7874
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 773,
|
||||
"end": 779,
|
||||
"start": 773,
|
||||
"commentStart": 791,
|
||||
"end": 797,
|
||||
"start": 791,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -2131,9 +2131,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 848,
|
||||
"end": 854,
|
||||
"start": 848,
|
||||
"commentStart": 866,
|
||||
"end": 872,
|
||||
"start": 866,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -2156,9 +2156,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 894,
|
||||
"end": 900,
|
||||
"start": 894,
|
||||
"commentStart": 912,
|
||||
"end": 918,
|
||||
"start": 912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -2181,9 +2181,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-4.8226
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 936,
|
||||
"end": 942,
|
||||
"start": 936,
|
||||
"commentStart": 954,
|
||||
"end": 960,
|
||||
"start": 954,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -2429,9 +2429,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1557,
|
||||
"end": 1578,
|
||||
"start": 1557,
|
||||
"commentStart": 1575,
|
||||
"end": 1596,
|
||||
"start": 1575,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA001"
|
||||
},
|
||||
@ -2454,9 +2454,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1675,
|
||||
"end": 1696,
|
||||
"start": 1675,
|
||||
"commentStart": 1693,
|
||||
"end": 1714,
|
||||
"start": 1693,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentB001"
|
||||
},
|
||||
@ -2479,9 +2479,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-3.6415
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 1798,
|
||||
"end": 1819,
|
||||
"start": 1798,
|
||||
"commentStart": 1816,
|
||||
"end": 1837,
|
||||
"start": 1816,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentC001"
|
||||
},
|
||||
@ -2564,9 +2564,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 620,
|
||||
"end": 626,
|
||||
"start": 620,
|
||||
"commentStart": 638,
|
||||
"end": 644,
|
||||
"start": 638,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -2584,9 +2584,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 773,
|
||||
"end": 779,
|
||||
"start": 773,
|
||||
"commentStart": 791,
|
||||
"end": 797,
|
||||
"start": 791,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -2597,9 +2597,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 848,
|
||||
"end": 854,
|
||||
"start": 848,
|
||||
"commentStart": 866,
|
||||
"end": 872,
|
||||
"start": 866,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -2610,9 +2610,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 894,
|
||||
"end": 900,
|
||||
"start": 894,
|
||||
"commentStart": 912,
|
||||
"end": 918,
|
||||
"start": 912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -2675,9 +2675,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
1.107
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 620,
|
||||
"end": 626,
|
||||
"start": 620,
|
||||
"commentStart": 638,
|
||||
"end": 644,
|
||||
"start": 638,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -2725,9 +2725,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
0.7874
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 773,
|
||||
"end": 779,
|
||||
"start": 773,
|
||||
"commentStart": 791,
|
||||
"end": 797,
|
||||
"start": 791,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -2750,9 +2750,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 848,
|
||||
"end": 854,
|
||||
"start": 848,
|
||||
"commentStart": 866,
|
||||
"end": 872,
|
||||
"start": 866,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -2775,9 +2775,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 894,
|
||||
"end": 900,
|
||||
"start": 894,
|
||||
"commentStart": 912,
|
||||
"end": 918,
|
||||
"start": 912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -2800,9 +2800,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-4.8226
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 936,
|
||||
"end": 942,
|
||||
"start": 936,
|
||||
"commentStart": 954,
|
||||
"end": 960,
|
||||
"start": 954,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
@ -3098,9 +3098,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 2186,
|
||||
"end": 2207,
|
||||
"start": 2186,
|
||||
"commentStart": 2204,
|
||||
"end": 2225,
|
||||
"start": 2204,
|
||||
"type": "TagDeclarator",
|
||||
"value": "rectangleSegmentA002"
|
||||
},
|
||||
@ -3221,9 +3221,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 620,
|
||||
"end": 626,
|
||||
"start": 620,
|
||||
"commentStart": 638,
|
||||
"end": 644,
|
||||
"start": 638,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -3241,9 +3241,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 773,
|
||||
"end": 779,
|
||||
"start": 773,
|
||||
"commentStart": 791,
|
||||
"end": 797,
|
||||
"start": 791,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -3254,9 +3254,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 848,
|
||||
"end": 854,
|
||||
"start": 848,
|
||||
"commentStart": 866,
|
||||
"end": 872,
|
||||
"start": 866,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -3267,9 +3267,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
"id": "[uuid]",
|
||||
"sourceRange": [],
|
||||
"tag": {
|
||||
"commentStart": 894,
|
||||
"end": 900,
|
||||
"start": 894,
|
||||
"commentStart": 912,
|
||||
"end": 918,
|
||||
"start": 912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -3332,9 +3332,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
1.107
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 620,
|
||||
"end": 626,
|
||||
"start": 620,
|
||||
"commentStart": 638,
|
||||
"end": 644,
|
||||
"start": 638,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg01"
|
||||
},
|
||||
@ -3382,9 +3382,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
0.7874
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 773,
|
||||
"end": 779,
|
||||
"start": 773,
|
||||
"commentStart": 791,
|
||||
"end": 797,
|
||||
"start": 791,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg05"
|
||||
},
|
||||
@ -3407,9 +3407,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 848,
|
||||
"end": 854,
|
||||
"start": 848,
|
||||
"commentStart": 866,
|
||||
"end": 872,
|
||||
"start": 866,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg04"
|
||||
},
|
||||
@ -3432,9 +3432,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-0.4919
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 894,
|
||||
"end": 900,
|
||||
"start": 894,
|
||||
"commentStart": 912,
|
||||
"end": 918,
|
||||
"start": 912,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg03"
|
||||
},
|
||||
@ -3457,9 +3457,9 @@ description: Variables in memory after executing router-template-slate.kcl
|
||||
-4.8226
|
||||
],
|
||||
"tag": {
|
||||
"commentStart": 936,
|
||||
"end": 942,
|
||||
"start": 936,
|
||||
"commentStart": 954,
|
||||
"end": 960,
|
||||
"start": 954,
|
||||
"type": "TagDeclarator",
|
||||
"value": "seg02"
|
||||
},
|
||||
|
||||
@ -1,67 +1,67 @@
|
||||
```mermaid
|
||||
flowchart LR
|
||||
subgraph path6 [Path]
|
||||
6["Path<br>[1228, 1309, 0]"]
|
||||
11["Segment<br>[1315, 1343, 0]"]
|
||||
12["Segment<br>[1349, 1410, 0]"]
|
||||
13["Segment<br>[1416, 1497, 0]"]
|
||||
14["Segment<br>[1503, 1565, 0]"]
|
||||
15["Segment<br>[1571, 1607, 0]"]
|
||||
16["Segment<br>[1613, 1642, 0]"]
|
||||
17["Segment<br>[1648, 1710, 0]"]
|
||||
18["Segment<br>[1716, 1770, 0]"]
|
||||
19["Segment<br>[1776, 1837, 0]"]
|
||||
20["Segment<br>[1843, 1871, 0]"]
|
||||
21["Segment<br>[1877, 1916, 0]"]
|
||||
22["Segment<br>[1922, 1965, 0]"]
|
||||
23["Segment<br>[1971, 2033, 0]"]
|
||||
24["Segment<br>[2039, 2098, 0]"]
|
||||
25["Segment<br>[2104, 2165, 0]"]
|
||||
26["Segment<br>[2171, 2207, 0]"]
|
||||
27["Segment<br>[2213, 2243, 0]"]
|
||||
28["Segment<br>[2249, 2310, 0]"]
|
||||
29["Segment<br>[2316, 2375, 0]"]
|
||||
30["Segment<br>[2381, 2443, 0]"]
|
||||
31["Segment<br>[2449, 2492, 0]"]
|
||||
32["Segment<br>[2498, 2568, 0]"]
|
||||
33["Segment<br>[2574, 2581, 0]"]
|
||||
6["Path<br>[1246, 1327, 0]"]
|
||||
11["Segment<br>[1333, 1361, 0]"]
|
||||
12["Segment<br>[1367, 1428, 0]"]
|
||||
13["Segment<br>[1434, 1515, 0]"]
|
||||
14["Segment<br>[1521, 1583, 0]"]
|
||||
15["Segment<br>[1589, 1625, 0]"]
|
||||
16["Segment<br>[1631, 1660, 0]"]
|
||||
17["Segment<br>[1666, 1728, 0]"]
|
||||
18["Segment<br>[1734, 1788, 0]"]
|
||||
19["Segment<br>[1794, 1855, 0]"]
|
||||
20["Segment<br>[1861, 1889, 0]"]
|
||||
21["Segment<br>[1895, 1934, 0]"]
|
||||
22["Segment<br>[1940, 1983, 0]"]
|
||||
23["Segment<br>[1989, 2051, 0]"]
|
||||
24["Segment<br>[2057, 2116, 0]"]
|
||||
25["Segment<br>[2122, 2183, 0]"]
|
||||
26["Segment<br>[2189, 2225, 0]"]
|
||||
27["Segment<br>[2231, 2261, 0]"]
|
||||
28["Segment<br>[2267, 2328, 0]"]
|
||||
29["Segment<br>[2334, 2393, 0]"]
|
||||
30["Segment<br>[2399, 2461, 0]"]
|
||||
31["Segment<br>[2467, 2510, 0]"]
|
||||
32["Segment<br>[2516, 2586, 0]"]
|
||||
33["Segment<br>[2592, 2599, 0]"]
|
||||
40[Solid2d]
|
||||
end
|
||||
subgraph path7 [Path]
|
||||
7["Path<br>[2920, 3009, 0]"]
|
||||
34["Segment<br>[2920, 3009, 0]"]
|
||||
7["Path<br>[2938, 3027, 0]"]
|
||||
34["Segment<br>[2938, 3027, 0]"]
|
||||
42[Solid2d]
|
||||
end
|
||||
subgraph path8 [Path]
|
||||
8["Path<br>[3291, 3379, 0]"]
|
||||
35["Segment<br>[3291, 3379, 0]"]
|
||||
8["Path<br>[3309, 3397, 0]"]
|
||||
35["Segment<br>[3309, 3397, 0]"]
|
||||
39[Solid2d]
|
||||
end
|
||||
subgraph path9 [Path]
|
||||
9["Path<br>[3668, 3848, 0]"]
|
||||
36["Segment<br>[3668, 3848, 0]"]
|
||||
9["Path<br>[3686, 3866, 0]"]
|
||||
36["Segment<br>[3686, 3866, 0]"]
|
||||
38[Solid2d]
|
||||
end
|
||||
subgraph path10 [Path]
|
||||
10["Path<br>[4271, 4327, 0]"]
|
||||
37["Segment<br>[4271, 4327, 0]"]
|
||||
10["Path<br>[4289, 4345, 0]"]
|
||||
37["Segment<br>[4289, 4345, 0]"]
|
||||
41[Solid2d]
|
||||
end
|
||||
1["Plane<br>[1205, 1222, 0]"]
|
||||
2["StartSketchOnFace<br>[3619, 3662, 0]"]
|
||||
3["StartSketchOnFace<br>[2871, 2914, 0]"]
|
||||
4["StartSketchOnFace<br>[4222, 4265, 0]"]
|
||||
5["StartSketchOnFace<br>[3242, 3285, 0]"]
|
||||
43["Sweep Extrusion<br>[2587, 2620, 0]"]
|
||||
44["Sweep Extrusion<br>[3138, 3166, 0]"]
|
||||
45["Sweep Extrusion<br>[3138, 3166, 0]"]
|
||||
46["Sweep Extrusion<br>[3508, 3536, 0]"]
|
||||
47["Sweep Extrusion<br>[3508, 3536, 0]"]
|
||||
48["Sweep Extrusion<br>[4102, 4130, 0]"]
|
||||
49["Sweep Extrusion<br>[4102, 4130, 0]"]
|
||||
50["Sweep Extrusion<br>[4102, 4130, 0]"]
|
||||
51["Sweep Extrusion<br>[4102, 4130, 0]"]
|
||||
52["Sweep Extrusion<br>[4333, 4361, 0]"]
|
||||
1["Plane<br>[1223, 1240, 0]"]
|
||||
2["StartSketchOnFace<br>[3637, 3680, 0]"]
|
||||
3["StartSketchOnFace<br>[2889, 2932, 0]"]
|
||||
4["StartSketchOnFace<br>[4240, 4283, 0]"]
|
||||
5["StartSketchOnFace<br>[3260, 3303, 0]"]
|
||||
43["Sweep Extrusion<br>[2605, 2638, 0]"]
|
||||
44["Sweep Extrusion<br>[3156, 3184, 0]"]
|
||||
45["Sweep Extrusion<br>[3156, 3184, 0]"]
|
||||
46["Sweep Extrusion<br>[3526, 3554, 0]"]
|
||||
47["Sweep Extrusion<br>[3526, 3554, 0]"]
|
||||
48["Sweep Extrusion<br>[4120, 4148, 0]"]
|
||||
49["Sweep Extrusion<br>[4120, 4148, 0]"]
|
||||
50["Sweep Extrusion<br>[4120, 4148, 0]"]
|
||||
51["Sweep Extrusion<br>[4120, 4148, 0]"]
|
||||
52["Sweep Extrusion<br>[4351, 4379, 0]"]
|
||||
53[Wall]
|
||||
54[Wall]
|
||||
55[Wall]
|
||||
@ -136,10 +136,10 @@ flowchart LR
|
||||
124["SweepEdge Adjacent"]
|
||||
125["SweepEdge Adjacent"]
|
||||
126["SweepEdge Adjacent"]
|
||||
127["EdgeCut Fillet<br>[2626, 2797, 0]"]
|
||||
128["EdgeCut Fillet<br>[2626, 2797, 0]"]
|
||||
129["EdgeCut Fillet<br>[2626, 2797, 0]"]
|
||||
130["EdgeCut Fillet<br>[2626, 2797, 0]"]
|
||||
127["EdgeCut Fillet<br>[2644, 2815, 0]"]
|
||||
128["EdgeCut Fillet<br>[2644, 2815, 0]"]
|
||||
129["EdgeCut Fillet<br>[2644, 2815, 0]"]
|
||||
130["EdgeCut Fillet<br>[2644, 2815, 0]"]
|
||||
1 --- 6
|
||||
76 x--> 2
|
||||
74 x--> 3
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user