Skip to content

Commit

Permalink
Revert "rename features to basegear"
Browse files Browse the repository at this point in the history
This reverts commit 878811a.
  • Loading branch information
looooo committed Jan 2, 2024
1 parent a386534 commit c0ebab0
Show file tree
Hide file tree
Showing 14 changed files with 690 additions and 14 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 .basegear import BaseGear, fcvec, make_bspline_wire
from .features import BaseGear, fcvec, make_bspline_wire


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

from .basegear import ViewProviderGear, BaseGear
from .features import (
ViewProviderGear,
HypoCycloidGear,
BaseGear,
)
from .timinggear_t import TimingGearT
from .involutegear import InvoluteGear
from .internalinvolutegear import InternalInvoluteGear
Expand All @@ -32,7 +36,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 .basegear import BaseGear, fcvec
from .features 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 .basegear import (
from .features 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 .basegear import BaseGear, fcvec, points_to_wire, insert_fillet
from .features import BaseGear, fcvec, points_to_wire, insert_fillet


class CycloidGearRack(BaseGear):
Expand Down
Loading

0 comments on commit c0ebab0

Please sign in to comment.