Fix: Use float defaults (0.0) in APoint to ensure correct type inference & Feature : added send_command() and send_commands() functions
π Release Notes β v0.1.10
β¨ New Features
-
Added
send_command()andsend_commands()methods
These methods allow you to programmatically send command strings to the AutoCAD command line:send_command(command_string)β sends a single command (asynchronously).send_commands(commands)β sends a sequence of command strings in order.
β οΈ Note: These operations are asynchronous; commands requiring user interaction or long processing may need delays or alternative handling.
π Bug Fixes
- Fixed default value types in
APointconstructor
Changed defaultx,y,zvalues from0to0.0to ensure proper float type inference. This resolves unintended behavior where arguments were inferred as integers.
Thanks to @Thomas737 for spotting this!
Full Changelog: v0.1.9...v0.1.10