-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Use Extension class in setup.py - Use only relative imports within splipy itself - Do not import from the splipy root module, only from the source files - Module names that are different from the root module re-exports - Some cleanup of imports
- Loading branch information
1 parent
0f0bd46
commit 86e9d54
Showing
35 changed files
with
369 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ doc/_templates | |
/doc/html/ | ||
/doc/latex/ | ||
.dir-locals.el | ||
/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,9 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from splipy.BSplineBasis import BSplineBasis | ||
from splipy.SplineObject import SplineObject | ||
from splipy.Curve import Curve | ||
from splipy.Surface import Surface | ||
from splipy.Volume import Volume | ||
from splipy.TrimmedSurface import TrimmedSurface | ||
|
||
# SplineModel imports io.G2 which imports TrimmedSurface, | ||
# so we must import SplineModel after TrimmedSurface | ||
from splipy.SplineModel import SplineModel | ||
from .basis import BSplineBasis | ||
from .splineobject import SplineObject | ||
from .curve import Curve | ||
from .surface import Surface | ||
from .volume import Volume | ||
from .trimmedsurface import TrimmedSurface | ||
from .splinemodel import SplineModel | ||
|
||
__version__ = '1.4.0' | ||
__all__ = ['BSplineBasis', | ||
'SplineObject', | ||
'Curve', | ||
'Surface', | ||
'Volume', | ||
'SplineModel', | ||
'TrimmedSurface', | ||
'curve_factory', | ||
'surface_factory', | ||
'volume_factory', | ||
'utils', | ||
'io'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.