def drawCCircle2Tan_(self, sender):
     _doc = self.getCurrentDocument()
     if _doc is None:
         return
     _tool = tools.TwoPointTangentCCircleTool()
     _doc.setTool(_tool)
     CocoaConobjs.ccircle_tan2_mode_init(_doc, _tool)
 def draw2PointCLine_(self, sender):
     _doc = self.getCurrentDocument()
     if _doc is None:
         return
     _tool = tools.CLineTool()
     _doc.setTool(_tool)
     CocoaConobjs.cline_tp_mode_init(_doc, _tool)
 def drawCCircleCenter_(self, sender):
     _doc = self.getCurrentDocument()
     if _doc is None:
         return
     _tool = tools.CCircleTool()
     _doc.setTool(_tool)
     CocoaConobjs.ccircle_center_mode_init(_doc, _tool)
 def drawPerpendicularCLine_(self, sender):
     _doc = self.getCurrentDocument()
     if _doc is None:
         return
     _tool = tools.Tool()
     _doc.setTool(_tool)
     CocoaConobjs.cline_perp_mode_init(_doc, _tool)
 def drawTan2CircleCLine_(self, sender):
     _doc = self.getCurrentDocument()
     if _doc is None:
         return
     _tool = tools.CCircleTangentLineTool()
     _doc.setTool(_tool)
     CocoaConobjs.cline_tan_2circ_mode_init(_doc, _tool)
Ejemplo n.º 6
0
 def drawCCircle2Tan_(self, sender):
     _doc = self.getCurrentDocument()
     if _doc is None:
         return
     _tool = tools.TwoPointTangentCCircleTool()
     _doc.setTool(_tool)
     CocoaConobjs.ccircle_tan2_mode_init(_doc, _tool)
 def drawParallelCLine_(self, sender):
     _doc = self.getCurrentDocument()
     if _doc is None:
         return
     _tool = tools.ParallelOffsetTool()
     _doc.setTool(_tool)
     CocoaConobjs.cline_par_mode_init(_doc, _tool)
Ejemplo n.º 8
0
 def drawCCircleCenter_(self, sender):
     _doc = self.getCurrentDocument()
     if _doc is None:
         return
     _tool = tools.CCircleTool()
     _doc.setTool(_tool)
     CocoaConobjs.ccircle_center_mode_init(_doc, _tool)
Ejemplo n.º 9
0
 def draw2PointCLine_(self, sender):
     _doc = self.getCurrentDocument()
     if _doc is None:
         return
     _tool = tools.CLineTool()
     _doc.setTool(_tool)
     CocoaConobjs.cline_tp_mode_init(_doc, _tool)
Ejemplo n.º 10
0
 def drawTan2CircleCLine_(self, sender):
     _doc = self.getCurrentDocument()
     if _doc is None:
         return
     _tool = tools.CCircleTangentLineTool()
     _doc.setTool(_tool)
     CocoaConobjs.cline_tan_2circ_mode_init(_doc, _tool)
Ejemplo n.º 11
0
 def drawPerpendicularCLine_(self, sender):
     _doc = self.getCurrentDocument()
     if _doc is None:
         return
     _tool = tools.Tool()
     _doc.setTool(_tool)
     CocoaConobjs.cline_perp_mode_init(_doc, _tool)
Ejemplo n.º 12
0
 def drawParallelCLine_(self, sender):
     _doc = self.getCurrentDocument()
     if _doc is None:
         return
     _tool = tools.ParallelOffsetTool()
     _doc.setTool(_tool)
     CocoaConobjs.cline_par_mode_init(_doc, _tool)