* Start of new dogbone dressup * Added Instruction and tangents support for G2/3 moves * Added Maneuver class to represent a set of moves and process them coherently * Created kinks and verify their creation. * Added dogbone detection and verification * Simplified gcode strings * Added horizontal t-bones generation * Added support for vertical t-bone * Consolidated t-bone creation * Added support for pathLength * Added support for tbone on short edge * Added support for long edges * Added support for dogbones * Fixed dogbone for non-horizontal lead-in * Horizontal bone adaptive length tests * Fixed dogbone angle and adaptive length * Some code cleanup * Added adaptive length tests for dogbones * Split base data classes into their own PathLanguage module. * Splitting dogboneII implementation into its constituents * Moved adaptive length into DogbonII module * Separate dogboneII generator test cases and changed interface to allow for dynamic length calculations * Unit tests for length calculation * Initial DogboneII unit test * Unit tests and fixes for plunge move handling * Unit tests for the remaining styles and incision strategies * Basic DogboneII gui * Added support for markers * Better color and selection scheme for markers * Cleaned up import statements * Added DogboneII to Path WB init * Support for dogbone on dogbone and fixed t-bone generation * Fixed t-bone on short leg bones * Fixed tbone on short edge when short edge is m1 * Fixed t-bone on long edge for m0/m1 and CW/CCW * Removed redundant code * Removed redundant 'Dress-up' from menu entries * black code formatting * added generator to cmake * Fixed typos
160 lines
6.2 KiB
Python
160 lines
6.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# ***************************************************************************
|
|
# * Copyright (c) 2018 sliptonic <shopinthewoods@gmail.com> *
|
|
# * *
|
|
# * This program is free software; you can redistribute it and/or modify *
|
|
# * it under the terms of the GNU Lesser General Public License (LGPL) *
|
|
# * as published by the Free Software Foundation; either version 2 of *
|
|
# * the License, or (at your option) any later version. *
|
|
# * for detail see the LICENCE text file. *
|
|
# * *
|
|
# * This program is distributed in the hope that it will be useful, *
|
|
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
# * GNU Library General Public License for more details. *
|
|
# * *
|
|
# * You should have received a copy of the GNU Library General Public *
|
|
# * License along with this program; if not, write to the Free Software *
|
|
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
|
# * USA *
|
|
# * *
|
|
# ***************************************************************************
|
|
|
|
import Path
|
|
import Path.Op.Deburr as PathDeburr
|
|
import Path.Tool.Bit as PathToolBit
|
|
import PathTests.PathTestUtils as PathTestUtils
|
|
|
|
Path.Log.setLevel(Path.Log.Level.INFO, Path.Log.thisModule())
|
|
# Path.Log.trackModule(Path.Log.thisModule())
|
|
|
|
|
|
class MockToolBit(object):
|
|
def __init__(self, name="t1", diameter=5.0):
|
|
self.Diameter = diameter
|
|
self.FlatRadius = 0
|
|
self.CuttingEdgeAngle = 60
|
|
|
|
|
|
class TestPathDeburr(PathTestUtils.PathTestBase):
|
|
def test00(self):
|
|
"""Verify chamfer depth and offset for an end mill."""
|
|
tool = MockToolBit()
|
|
tool.Diameter = 20
|
|
tool.FlatRadius = 0
|
|
tool.CuttingEdgeAngle = 180
|
|
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(1, 0.01, tool, True)
|
|
self.assertRoughly(0.01, depth)
|
|
self.assertRoughly(9, offset)
|
|
self.assertFalse(info)
|
|
|
|
# legacy tools - no problem, same result
|
|
tool.CuttingEdgeAngle = 0
|
|
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(1, 0.01, tool, True)
|
|
self.assertRoughly(0.01, depth)
|
|
self.assertRoughly(9, offset)
|
|
self.assertFalse(info)
|
|
|
|
def test01(self):
|
|
"""Verify chamfer depth and offset for a 90 deg v-bit."""
|
|
tool = MockToolBit()
|
|
tool.FlatRadius = 0
|
|
tool.CuttingEdgeAngle = 90
|
|
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(1, 0, tool, True)
|
|
self.assertRoughly(1, depth)
|
|
self.assertRoughly(0, offset)
|
|
self.assertFalse(info)
|
|
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(1, 0.2, tool, True)
|
|
self.assertRoughly(1.2, depth)
|
|
self.assertRoughly(0.2, offset)
|
|
self.assertFalse(info)
|
|
|
|
def test02(self):
|
|
"""Verify chamfer depth and offset for a 90 deg v-bit with non 0 flat radius."""
|
|
tool = MockToolBit()
|
|
tool.FlatRadius = 0.3
|
|
tool.CuttingEdgeAngle = 90
|
|
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(1, 0, tool, True)
|
|
self.assertRoughly(1, depth)
|
|
self.assertRoughly(0.3, offset)
|
|
self.assertFalse(info)
|
|
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(2, 0.2, tool, True)
|
|
self.assertRoughly(2.2, depth)
|
|
self.assertRoughly(0.5, offset)
|
|
self.assertFalse(info)
|
|
|
|
def test03(self):
|
|
"""Verify chamfer depth and offset for a 60 deg v-bit with non 0 flat radius."""
|
|
tool = MockToolBit()
|
|
tool.FlatRadius = 10
|
|
tool.CuttingEdgeAngle = 60
|
|
|
|
td = 1.73205
|
|
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(1, 0, tool, True)
|
|
self.assertRoughly(td, depth)
|
|
self.assertRoughly(10, offset)
|
|
self.assertFalse(info)
|
|
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(3, 1, tool, True)
|
|
self.assertRoughly(td * 3 + 1, depth)
|
|
self.assertRoughly(10 + td, offset)
|
|
self.assertFalse(info)
|
|
|
|
def test10(self):
|
|
"""Verify missing cutting edge angle info prints only once."""
|
|
|
|
class FakeEndmill(object):
|
|
def __init__(self, dia):
|
|
self.Diameter = dia
|
|
|
|
tool = FakeEndmill(10)
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(1, 0.1, tool, True)
|
|
self.assertRoughly(0.1, depth)
|
|
self.assertRoughly(4, offset)
|
|
self.assertTrue(info)
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(
|
|
1, 0.1, tool, not info
|
|
)
|
|
self.assertRoughly(0.1, depth)
|
|
self.assertRoughly(4, offset)
|
|
self.assertTrue(info)
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(
|
|
1, 0.1, tool, not info
|
|
)
|
|
self.assertRoughly(0.1, depth)
|
|
self.assertRoughly(4, offset)
|
|
self.assertTrue(info)
|
|
|
|
def test11(self):
|
|
"""Verify missing tip diameter info prints only once."""
|
|
|
|
class FakePointyBit(object):
|
|
def __init__(self, dia, angle):
|
|
self.Diameter = dia
|
|
self.CuttingEdgeAngle = angle
|
|
|
|
tool = FakePointyBit(10, 90)
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(1, 0.1, tool, True)
|
|
self.assertRoughly(1.1, depth)
|
|
self.assertRoughly(0.1, offset)
|
|
self.assertTrue(info)
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(
|
|
1, 0.1, tool, not info
|
|
)
|
|
self.assertRoughly(1.1, depth)
|
|
self.assertRoughly(0.1, offset)
|
|
self.assertTrue(info)
|
|
(depth, offset, __, info) = PathDeburr.toolDepthAndOffset(
|
|
1, 0.1, tool, not info
|
|
)
|
|
self.assertRoughly(1.1, depth)
|
|
self.assertRoughly(0.1, offset)
|
|
self.assertTrue(info)
|