Maybe it is not clear for everyone :
The macro system is based on a runtime compilation for C# code. During the compilation UCCNC has to specific which namespaces it uses for compilation (same as using xxxxxx in your C# code).
But you can still use all .NET components (.Net Framwork 4) by typing the entire namespace
so, you can use the ceiling function by typing
- Code: Select all
System.Math.Ceiling(value);