Can I get the coordinates A or B or information of this curve,
is there any way to convert geometry intent to curve?
I'm trying to converting newGeometryIntent to Curve.
I want to know the coordinates of the curve, from the coordinates of the curve can calculate the coordinates of the dim text origin so that it forms a 45 degree angle.
My whole idea is:
Create a new radius dimension, reuse the geometry intent of the old dimension, delete old dim.
45 degree angle will be created from the coordinates of the geometry intent and oDim.text.origin
GeneralDimensions.AddRadius( TextOrigin As Point2d, Intent As GeometryIntent, [ArrowheadsInside] As Boolean, [LeaderFromCenter] As Boolean, [Jogged] As Boolean, [DimensionStyle] As Variant, [Layer] As Variant ) As RadiusGeneralDimension

Sub zzz()
Dim doc As DrawingDocument
Set doc = ThisApplication.ActiveDocument
Dim oSheet As sheet
Set oSheet = doc.activeSheet
Dim oDim As RadiusGeneralDimension
Set oDim = ThisApplication.CommandManager.Pick(kDrawingDimensionFilter, "Pick dimension")
Dim newDim As RadiusGeneralDimension
Dim oTG As TransientGeometry
Set oTG = ThisApplication.TransientGeometry
Dim newGeometryIntent As GeometryIntent
Set newGeometryIntent = oDim.Intent '<--- stuck here
End sub