TestEIn 1.6c3 :

- aggiunta gestione cambio inizio di curva chiusa
- sistemato aggiornamento interfacccia dopo Break e Split Curve
- aggiunto cambio punto notevole da tastiera (S->sketch,G->Grid,...).
This commit is contained in:
Dario Sassi
2015-03-16 14:19:29 +00:00
parent 8d613fce4c
commit 7cc2e7d76f
11 changed files with 254 additions and 99 deletions
+21 -1
View File
@@ -116,6 +116,7 @@ Partial Class Form1
Me.btnExtrude = New System.Windows.Forms.Button()
Me.btnPlane = New System.Windows.Forms.Button()
Me.TabEdit = New System.Windows.Forms.TabPage()
Me.btnChangeStartCurve = New System.Windows.Forms.Button()
Me.btnChangeLayer = New System.Windows.Forms.Button()
Me.btnSetCurveTh = New System.Windows.Forms.Button()
Me.btnExtendCurve = New System.Windows.Forms.Button()
@@ -1690,6 +1691,7 @@ Partial Class Form1
'TabEdit
'
Me.TabEdit.BackColor = System.Drawing.SystemColors.Control
Me.TabEdit.Controls.Add(Me.btnChangeStartCurve)
Me.TabEdit.Controls.Add(Me.btnChangeLayer)
Me.TabEdit.Controls.Add(Me.btnSetCurveTh)
Me.TabEdit.Controls.Add(Me.btnExtendCurve)
@@ -1705,6 +1707,23 @@ Partial Class Form1
Me.TabEdit.TabIndex = 3
Me.TabEdit.Text = "Edit"
'
'btnChangeStartCurve
'
Me.btnChangeStartCurve.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control
Me.btnChangeStartCurve.FlatAppearance.BorderSize = 0
Me.btnChangeStartCurve.FlatAppearance.MouseDownBackColor = System.Drawing.SystemColors.Control
Me.btnChangeStartCurve.FlatAppearance.MouseOverBackColor = System.Drawing.SystemColors.GradientInactiveCaption
Me.btnChangeStartCurve.FlatStyle = System.Windows.Forms.FlatStyle.Flat
Me.btnChangeStartCurve.Image = CType(resources.GetObject("btnChangeStartCurve.Image"), System.Drawing.Image)
Me.btnChangeStartCurve.ImageAlign = System.Drawing.ContentAlignment.TopCenter
Me.btnChangeStartCurve.Location = New System.Drawing.Point(3, 384)
Me.btnChangeStartCurve.Name = "btnChangeStartCurve"
Me.btnChangeStartCurve.Size = New System.Drawing.Size(56, 48)
Me.btnChangeStartCurve.TabIndex = 41
Me.btnChangeStartCurve.Text = "Start"
Me.btnChangeStartCurve.TextAlign = System.Drawing.ContentAlignment.BottomCenter
Me.btnChangeStartCurve.UseVisualStyleBackColor = False
'
'btnChangeLayer
'
Me.btnChangeLayer.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control
@@ -1732,7 +1751,7 @@ Partial Class Form1
Me.btnSetCurveTh.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.btnSetCurveTh.Image = CType(resources.GetObject("btnSetCurveTh.Image"), System.Drawing.Image)
Me.btnSetCurveTh.ImageAlign = System.Drawing.ContentAlignment.TopCenter
Me.btnSetCurveTh.Location = New System.Drawing.Point(0, 384)
Me.btnSetCurveTh.Location = New System.Drawing.Point(0, 432)
Me.btnSetCurveTh.Name = "btnSetCurveTh"
Me.btnSetCurveTh.Size = New System.Drawing.Size(56, 48)
Me.btnSetCurveTh.TabIndex = 40
@@ -2537,5 +2556,6 @@ End Sub
Friend WithEvents MruSFile8 As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents btnMergeSurf As System.Windows.Forms.Button
Friend WithEvents btnInvertSurf As System.Windows.Forms.Button
Friend WithEvents btnChangeStartCurve As System.Windows.Forms.Button
End Class