Add int() function to KCL stdlib (#3116)

This commit is contained in:
Jonathan Tran
2024-07-25 21:18:52 -04:00
committed by GitHub
parent 029799215b
commit 4dd8a25fdd
8 changed files with 186 additions and 0 deletions

View File

@ -2,6 +2,7 @@
pub mod args;
pub mod chamfer;
pub mod convert;
pub mod extrude;
pub mod fillet;
pub mod helix;
@ -45,6 +46,7 @@ lazy_static! {
Box::new(LegLen),
Box::new(LegAngX),
Box::new(LegAngY),
Box::new(crate::std::convert::Int),
Box::new(crate::std::extrude::Extrude),
Box::new(crate::std::segment::SegEndX),
Box::new(crate::std::segment::SegEndY),