Hi there,
I have to deal with some postscript files where curve lines are represented by a series of facetted straigth lines.
Once imported into CorelDraw, I can group them and Combine them into a single curve as they should be. But then the curve will have multiple subpaths and it isnt exactly smooth.
Tried to write a small VBA routine to join the subpath into a single one but came across the problem of not sure when I do
Code:
s = ACtiveSelection
sp = s.Cuve.subpath(1)
is the sp will always be the "first" in the curve, or is corel draw just return a range of subpath in no consequtive order in relation the the actual curve.
thanks.