-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
115 additions
and
59 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import feigen | ||
|
||
if __name__ == "__main__": | ||
# feigen.log.configure(debug=True) | ||
|
||
b = feigen.Poisson2D() | ||
b.start() |
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,11 +1,14 @@ | ||
from feigen import bspline, comm, log | ||
from feigen import bspline, comm, log, poisson2d | ||
from feigen._version import __version__ | ||
from feigen.bspline import BSpline2D | ||
from feigen.poisson2d import Poisson2D | ||
|
||
__all__ = [ | ||
"__version__", | ||
"bspline", | ||
"comm", | ||
"log", | ||
"poisson2d", | ||
"BSpline2D", | ||
"Poisson2D", | ||
] |
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