Skip to content

Commit

Permalink
rename features to basegear
Browse files Browse the repository at this point in the history
  • Loading branch information
looooo committed Jan 2, 2024
1 parent 0d10df1 commit 878811a
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 690 deletions.
2 changes: 1 addition & 1 deletion freecad/gears/bevelgear.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from pygears.bevel_tooth import BevelTooth
from pygears._functions import rotation3D

from .features import BaseGear, fcvec, make_bspline_wire
from .basegear import BaseGear, fcvec, make_bspline_wire


class BevelGear(BaseGear):
Expand Down
8 changes: 2 additions & 6 deletions freecad/gears/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,7 @@
import FreeCAD
import FreeCADGui as Gui

from .features import (
ViewProviderGear,
HypoCycloidGear,
BaseGear,
)
from .basegear import ViewProviderGear, BaseGear
from .timinggear_t import TimingGearT
from .involutegear import InvoluteGear
from .internalinvolutegear import InternalInvoluteGear
Expand All @@ -36,7 +32,7 @@
from .wormgear import WormGear
from .timinggear import TimingGear
from .lanterngear import LanternGear

from .hypocycloidgear import HypoCycloidGear

from .connector import GearConnector, ViewProviderGearConnector

Expand Down
2 changes: 1 addition & 1 deletion freecad/gears/crowngear.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import numpy as np

from .features import BaseGear, fcvec
from .basegear import BaseGear, fcvec


class CrownGear(BaseGear):
Expand Down
2 changes: 1 addition & 1 deletion freecad/gears/cycloidgear.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from pygears.cycloid_tooth import CycloidTooth
from pygears._functions import rotation

from .features import (
from .basegear import (
BaseGear,
points_to_wire,
insert_fillet,
Expand Down
2 changes: 1 addition & 1 deletion freecad/gears/cycloidgearrack.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import numpy as np

from pygears._functions import reflection
from .features import BaseGear, fcvec, points_to_wire, insert_fillet
from .basegear import BaseGear, fcvec, points_to_wire, insert_fillet


class CycloidGearRack(BaseGear):
Expand Down
Loading

0 comments on commit 878811a

Please sign in to comment.