i want to use the Rhino function GetDimRadial which is defined in rhinoSdkGetDimRadial.h
the problem is, the linker cannot find this function and ends with unresolved symbols.
Is there another function i can use which has the same functionality?
GetDimRadial is not decorated with a RHINO_SDK_FUNCTION macro. Thus, the function is not exported for usage in the SDK, which it should be. I’ve created an issue for this.
If exported, the GetDimRadial function would have let the user interactively define a radial dimension - just like running the DimRadius command. If this is all you need, then just script this command.
Or are you just looking to create a radial dimension thru code?