Skip to content

Commit

Permalink
[ci skip] Updating doc and version (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
doyubkim authored Sep 4, 2017
1 parent 718326e commit ca44dd5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ Here are some of the example simulations generated using Jet framework. Correspo
![Cubic-smoke Example](https://github.com/doyubkim/fluid-engine-dev/raw/master/doc/img/smoke_cubic.png "Cubic-smoke Example")
![Linear-smoke Example](https://github.com/doyubkim/fluid-engine-dev/raw/master/doc/img/smoke_linear.png "Linear-smoke Example")

### Point-to-Surface Examples

![Point-to-Surface Example](https://github.com/doyubkim/fluid-engine-dev/raw/master/doc/img/point_to_surface.png "Point-to-Surface Example")

> Top-left: spherical, top-right: SPH blobby, bottom-left: Zhu and Bridson's method, and bottom-right: Anisotropic kernel
## License

Jet is under the MIT license. For more information, check out [LICENSE.md](https://github.com/doyubkim/fluid-engine-dev/blob/master/LICENSE.md). Jet also utilizes other open source codes. Checkout [3RD_PARTY.md](https://github.com/doyubkim/fluid-engine-dev/blob/master/3RD_PARTY.md) for more details.
Expand Down
2 changes: 1 addition & 1 deletion doc/doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = Jet
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = v1.1.0
PROJECT_NUMBER = v1.2.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
1 change: 1 addition & 0 deletions doc/doxygen/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Jet framework is a fluid simulation engine SDK for computer graphics application
* PIC, FLIP, and APIC fluid simulators
* Upwind, ENO, and FMM level set solvers
* Jacobi, Gauss-Seidel, SOR, MG, CG, ICCG, and MGPCG linear system solvers
* Spherical, SPH, Zhu & Bridson, and Anisotropic kernel for points-to-surface converter
* Converters between signed distance function and triangular mesh
* C++ and Python API

Expand Down
Binary file added doc/img/point_to_surface.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def build_extension(self, ext):

setup(
name='pyjet',
version='1.1.0',
version='1.2.0',
author='Doyub Kim',
author_email='[email protected]',
description='Fluid simulation engine for computer graphics applications',
Expand Down
4 changes: 2 additions & 2 deletions src/python/sph_points_to_implicit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void addSphPointsToImplicit2(pybind11::module& m) {
R"pbdoc(
2-D points-to-implicit converter based on standard SPH kernel.
\see Müller, Matthias, David Charypar, and Markus Gross.
\see M\"uller, Matthias, David Charypar, and Markus Gross.
"Particle-based fluid simulation for interactive applications."
Proceedings of the 2003 ACM SIGGRAPH/Eurographics symposium on Computer
animation. Eurographics Association, 2003.
Expand All @@ -44,7 +44,7 @@ void addSphPointsToImplicit3(pybind11::module& m) {
R"pbdoc(
3-D points-to-implicit converter based on standard SPH kernel.
\see Müller, Matthias, David Charypar, and Markus Gross.
\see M\"uller, Matthias, David Charypar, and Markus Gross.
"Particle-based fluid simulation for interactive applications."
Proceedings of the 2003 ACM SIGGRAPH/Eurographics symposium on Computer
animation. Eurographics Association, 2003.
Expand Down

0 comments on commit ca44dd5

Please sign in to comment.