* initial port Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * start of macro Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * more macros Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * new Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix clippy Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * start of generated docs Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixups Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates for objects Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixiups Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * descriptions Signed-off-by: Jess Frazelle <github@jessfraz.com> * descriptions Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * remove vecs Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix clippy Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com>
311 lines
9.0 KiB
Rust
311 lines
9.0 KiB
Rust
//! Functions related to line segments.
|
|
|
|
use crate::{
|
|
errors::{KclError, KclErrorDetails},
|
|
executor::{MemoryItem, SketchGroup},
|
|
std::{utils::get_angle, Args},
|
|
};
|
|
|
|
use anyhow::Result;
|
|
use derive_docs::stdlib;
|
|
use schemars::JsonSchema;
|
|
|
|
/// Returns the segment end of x.
|
|
pub fn segment_end_x(args: &mut Args) -> Result<MemoryItem, KclError> {
|
|
let (segment_name, sketch_group) = args.get_segment_name_sketch_group()?;
|
|
let result = inner_segment_end_x(&segment_name, sketch_group, args)?;
|
|
|
|
args.make_user_val_from_f64(result)
|
|
}
|
|
|
|
/// Returns the segment end of x.
|
|
#[stdlib {
|
|
name = "segEndX",
|
|
}]
|
|
fn inner_segment_end_x(
|
|
segment_name: &str,
|
|
sketch_group: SketchGroup,
|
|
args: &mut Args,
|
|
) -> Result<f64, KclError> {
|
|
let line = sketch_group
|
|
.get_base_by_name_or_start(segment_name)
|
|
.ok_or_else(|| {
|
|
KclError::Type(KclErrorDetails {
|
|
message: format!(
|
|
"Expected a segment name that exists in the given SketchGroup, found `{}`",
|
|
segment_name
|
|
),
|
|
source_ranges: vec![args.source_range],
|
|
})
|
|
})?;
|
|
|
|
Ok(line.to[0])
|
|
}
|
|
|
|
/// Returns the segment end of y.
|
|
pub fn segment_end_y(args: &mut Args) -> Result<MemoryItem, KclError> {
|
|
let (segment_name, sketch_group) = args.get_segment_name_sketch_group()?;
|
|
let result = inner_segment_end_y(&segment_name, sketch_group, args)?;
|
|
|
|
args.make_user_val_from_f64(result)
|
|
}
|
|
|
|
/// Returns the segment end of y.
|
|
#[stdlib {
|
|
name = "segEndY",
|
|
}]
|
|
fn inner_segment_end_y(
|
|
segment_name: &str,
|
|
sketch_group: SketchGroup,
|
|
args: &mut Args,
|
|
) -> Result<f64, KclError> {
|
|
let line = sketch_group
|
|
.get_base_by_name_or_start(segment_name)
|
|
.ok_or_else(|| {
|
|
KclError::Type(KclErrorDetails {
|
|
message: format!(
|
|
"Expected a segment name that exists in the given SketchGroup, found `{}`",
|
|
segment_name
|
|
),
|
|
source_ranges: vec![args.source_range],
|
|
})
|
|
})?;
|
|
|
|
Ok(line.to[1])
|
|
}
|
|
|
|
/// Returns the last segment of x.
|
|
pub fn last_segment_x(args: &mut Args) -> Result<MemoryItem, KclError> {
|
|
let sketch_group = args.get_sketch_group()?;
|
|
let result = inner_last_segment_x(sketch_group, args)?;
|
|
|
|
args.make_user_val_from_f64(result)
|
|
}
|
|
|
|
/// Returns the last segment of x.
|
|
#[stdlib {
|
|
name = "lastSegX",
|
|
}]
|
|
fn inner_last_segment_x(sketch_group: SketchGroup, args: &mut Args) -> Result<f64, KclError> {
|
|
let last_line = sketch_group
|
|
.value
|
|
.last()
|
|
.ok_or_else(|| {
|
|
KclError::Type(KclErrorDetails {
|
|
message: format!(
|
|
"Expected a SketchGroup with at least one segment, found `{:?}`",
|
|
sketch_group
|
|
),
|
|
source_ranges: vec![args.source_range],
|
|
})
|
|
})?
|
|
.get_base();
|
|
|
|
Ok(last_line.to[0])
|
|
}
|
|
|
|
/// Returns the last segment of y.
|
|
pub fn last_segment_y(args: &mut Args) -> Result<MemoryItem, KclError> {
|
|
let sketch_group = args.get_sketch_group()?;
|
|
let result = inner_last_segment_y(sketch_group, args)?;
|
|
|
|
args.make_user_val_from_f64(result)
|
|
}
|
|
|
|
/// Returns the last segment of y.
|
|
#[stdlib {
|
|
name = "lastSegY",
|
|
}]
|
|
fn inner_last_segment_y(sketch_group: SketchGroup, args: &mut Args) -> Result<f64, KclError> {
|
|
let last_line = sketch_group
|
|
.value
|
|
.last()
|
|
.ok_or_else(|| {
|
|
KclError::Type(KclErrorDetails {
|
|
message: format!(
|
|
"Expected a SketchGroup with at least one segment, found `{:?}`",
|
|
sketch_group
|
|
),
|
|
source_ranges: vec![args.source_range],
|
|
})
|
|
})?
|
|
.get_base();
|
|
|
|
Ok(last_line.to[1])
|
|
}
|
|
|
|
/// Returns the length of the segment.
|
|
pub fn segment_length(args: &mut Args) -> Result<MemoryItem, KclError> {
|
|
let (segment_name, sketch_group) = args.get_segment_name_sketch_group()?;
|
|
let result = inner_segment_length(&segment_name, sketch_group, args)?;
|
|
args.make_user_val_from_f64(result)
|
|
}
|
|
|
|
/// Returns the length of the segment.
|
|
#[stdlib {
|
|
name = "segLen",
|
|
}]
|
|
fn inner_segment_length(
|
|
segment_name: &str,
|
|
sketch_group: SketchGroup,
|
|
args: &mut Args,
|
|
) -> Result<f64, KclError> {
|
|
let path = sketch_group.get_path_by_name(segment_name).ok_or_else(|| {
|
|
KclError::Type(KclErrorDetails {
|
|
message: format!(
|
|
"Expected a segment name that exists in the given SketchGroup, found `{}`",
|
|
segment_name
|
|
),
|
|
source_ranges: vec![args.source_range],
|
|
})
|
|
})?;
|
|
let line = path.get_base();
|
|
|
|
let result = ((line.from[1] - line.to[1]).powi(2) + (line.from[0] - line.to[0]).powi(2)).sqrt();
|
|
|
|
Ok(result)
|
|
}
|
|
|
|
/// Returns the angle of the segment.
|
|
pub fn segment_angle(args: &mut Args) -> Result<MemoryItem, KclError> {
|
|
let (segment_name, sketch_group) = args.get_segment_name_sketch_group()?;
|
|
|
|
let result = inner_segment_angle(&segment_name, sketch_group, args)?;
|
|
args.make_user_val_from_f64(result)
|
|
}
|
|
|
|
/// Returns the angle of the segment.
|
|
#[stdlib {
|
|
name = "segAng",
|
|
}]
|
|
fn inner_segment_angle(
|
|
segment_name: &str,
|
|
sketch_group: SketchGroup,
|
|
args: &mut Args,
|
|
) -> Result<f64, KclError> {
|
|
let path = sketch_group.get_path_by_name(segment_name).ok_or_else(|| {
|
|
KclError::Type(KclErrorDetails {
|
|
message: format!(
|
|
"Expected a segment name that exists in the given SketchGroup, found `{}`",
|
|
segment_name
|
|
),
|
|
source_ranges: vec![args.source_range],
|
|
})
|
|
})?;
|
|
let line = path.get_base();
|
|
|
|
let result = get_angle(&line.from, &line.to);
|
|
|
|
Ok(result)
|
|
}
|
|
|
|
/// Returns the angle to match the given length for x.
|
|
pub fn angle_to_match_length_x(args: &mut Args) -> Result<MemoryItem, KclError> {
|
|
let (segment_name, to, sketch_group) = args.get_segment_name_to_number_sketch_group()?;
|
|
let result = inner_angle_to_match_length_x(&segment_name, to, sketch_group, args)?;
|
|
args.make_user_val_from_f64(result)
|
|
}
|
|
|
|
/// Returns the angle to match the given length for x.
|
|
#[stdlib {
|
|
name = "angleToMatchLengthX",
|
|
}]
|
|
fn inner_angle_to_match_length_x(
|
|
segment_name: &str,
|
|
to: f64,
|
|
sketch_group: SketchGroup,
|
|
args: &mut Args,
|
|
) -> Result<f64, KclError> {
|
|
let path = sketch_group.get_path_by_name(segment_name).ok_or_else(|| {
|
|
KclError::Type(KclErrorDetails {
|
|
message: format!(
|
|
"Expected a segment name that exists in the given SketchGroup, found `{}`",
|
|
segment_name
|
|
),
|
|
source_ranges: vec![args.source_range],
|
|
})
|
|
})?;
|
|
let line = path.get_base();
|
|
|
|
let length = ((line.from[1] - line.to[1]).powi(2) + (line.from[0] - line.to[0]).powi(2)).sqrt();
|
|
|
|
let last_line = sketch_group
|
|
.value
|
|
.last()
|
|
.ok_or_else(|| {
|
|
KclError::Type(KclErrorDetails {
|
|
message: format!(
|
|
"Expected a SketchGroup with at least one segment, found `{:?}`",
|
|
sketch_group
|
|
),
|
|
source_ranges: vec![args.source_range],
|
|
})
|
|
})?
|
|
.get_base();
|
|
|
|
let diff = (to - last_line.to[0]).abs();
|
|
|
|
let angle_r = diff / length.acos();
|
|
|
|
if diff > length {
|
|
Ok(0.0)
|
|
} else {
|
|
Ok(angle_r * 180.0 / std::f64::consts::PI)
|
|
}
|
|
}
|
|
|
|
/// Returns the angle to match the given length for y.
|
|
pub fn angle_to_match_length_y(args: &mut Args) -> Result<MemoryItem, KclError> {
|
|
let (segment_name, to, sketch_group) = args.get_segment_name_to_number_sketch_group()?;
|
|
let result = inner_angle_to_match_length_y(&segment_name, to, sketch_group, args)?;
|
|
args.make_user_val_from_f64(result)
|
|
}
|
|
|
|
/// Returns the angle to match the given length for y.
|
|
#[stdlib {
|
|
name = "angleToMatchLengthY",
|
|
}]
|
|
fn inner_angle_to_match_length_y(
|
|
segment_name: &str,
|
|
to: f64,
|
|
sketch_group: SketchGroup,
|
|
args: &mut Args,
|
|
) -> Result<f64, KclError> {
|
|
let path = sketch_group.get_path_by_name(segment_name).ok_or_else(|| {
|
|
KclError::Type(KclErrorDetails {
|
|
message: format!(
|
|
"Expected a segment name that exists in the given SketchGroup, found `{}`",
|
|
segment_name
|
|
),
|
|
source_ranges: vec![args.source_range],
|
|
})
|
|
})?;
|
|
let line = path.get_base();
|
|
|
|
let length = ((line.from[1] - line.to[1]).powi(2) + (line.from[0] - line.to[0]).powi(2)).sqrt();
|
|
|
|
let last_line = sketch_group
|
|
.value
|
|
.last()
|
|
.ok_or_else(|| {
|
|
KclError::Type(KclErrorDetails {
|
|
message: format!(
|
|
"Expected a SketchGroup with at least one segment, found `{:?}`",
|
|
sketch_group
|
|
),
|
|
source_ranges: vec![args.source_range],
|
|
})
|
|
})?
|
|
.get_base();
|
|
|
|
let diff = (to - last_line.to[1]).abs();
|
|
|
|
let angle_r = diff / length.asin();
|
|
|
|
if diff > length {
|
|
Ok(0.0)
|
|
} else {
|
|
Ok(angle_r * 180.0 / std::f64::consts::PI)
|
|
}
|
|
}
|