-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .step files handler, create base NURBS class, change tests (#101)
* Add .step files handler, create base NURBS class, change tests (#101) * Fix documentation, move extensions list from class to self * Fix tests
- Loading branch information
1 parent
77fd59c
commit ad8626c
Showing
23 changed files
with
5,077 additions
and
398 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
__all__ = [ | ||
'affine', 'filehandler', 'freeform', 'radial', 'openfhandler', 'params', | ||
'stlhandler', 'unvhandler', 'vtkhandler', 'igeshandler', 'utils', 'gui' | ||
'stlhandler', 'unvhandler', 'vtkhandler', 'nurbshandler', 'stephandler', | ||
'igeshandler', 'utils', 'gui' | ||
] | ||
|
||
from . import affine | ||
from . import freeform | ||
from . import radial | ||
from . import filehandler | ||
from . import freeform | ||
from . import gui | ||
from . import igeshandler | ||
from . import nurbshandler | ||
from . import openfhandler | ||
from . import params | ||
from . import radial | ||
from . import stephandler | ||
from . import stlhandler | ||
from . import unvhandler | ||
from . import vtkhandler | ||
from . import igeshandler | ||
from . import utils | ||
from . import gui | ||
from . import vtkhandler |
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.