Double vectors and open vectors.

I do a lot of image tracing for fiber laser work in wireframe view but always get stumped by underlying vectors or opens that I can’t readily see. Is there a way to identify a vector beneath the visible one and the same issue with open vectors?  Thanks all. Neville 

Parents
No Data
Reply
  • A macro to start

    Sub DetectOpenShapes()
    Dim s As Shape, sr As ShapeRange
    For Each s In ActivePage.Shapes.All
    If Not s.Curve.Closed Then
    MsgBox "Open Curves in Doc"
    s.AddToSelection
    End If
    Next s
    End Sub

Children
No Data