Open-source node system framework, to change your algorithmic code into useful tools to create much more complicated simulations!

Overview

ZENO node system

CMake License Version

Download | Repo | About us | Tutorial | Videos | Q&A Forum | Bug report

国内高速下载 | Gitee 镜像仓库 | 公司主页 | 中文教程 | 视频教程 | 问答论坛 | BUG 反馈

Open-source node system framework, to change your algorithmic code into useful tools to create much more complicated simulations!

ZENO is an OpenSource, Node based 3D system able to produce cinematic physics effects at High Efficiency, it was designed for large scale simulations and has been tested on complex setups. Aside of its simulation Tools, ZENO provides necessary visualization nodes for users to import and run simulations if you feel that the current software you are using is too slow.

Features

Integrated Toolbox, from volumetric geometry process tools (OpenVDB), to state-of-art, commercially robust, highly optimized physics solvers and visualization nodes, and various VFX and simulation solutions based on our nodes (provided by .zsg file in graphs/ folder).

Gallery

Fig.1 - Robot hit water

Fig.2 - SuperSonic Flow

Fig.3 - Fluid-structure interaction in ZENO

Fig.4 - Rigid fracture in ZENO

Fig.5 - Muscular-skeleton simulation in ZENO

Fig.6 - Large scale Fluids in ZENO

End-user Installation

Download binary release

Go to the release page, and click Assets -> download zeno-linux-20xx.x.x.tar.gz. Then, extract this archive, and simply run ./launcher (launcher.exe for Windows), then the node editor window will shows up if everything is working well.

How to play

There are some example graphs in the graphs/ folder, you may open them in the editor and have fun! Hint: To run an animation for 100 frames, change the 1 on the top-left of node editor to 100, then click Run. Also MMB to drag in the node editor, LMB click on sockets to create connections. MMB drag in the viewport to orbit camera, Shift+MMB to pan camera. More details are available in our official tutorial.

Bug report

If you find the binary version didn't worked properly or some error message has been thrown on your machine, please let me know by opening an issue on GitHub, thanks for you support!

Developer Build

To build ZENO, you need:

  • GCC 9+ or MSVC 19+, CMake 3.12+, and Python 3.6+ to build ZENO.
  • Pybind11, NumPy and PySide2 (Qt for Python) to run ZENO editor.
  • (Optional) OpenVDB for building volume nodes; CUDA for GPU nodes.

Hint: for Python, please try avoid using virtualenv and Conda if possible. WSL is also not recommended because of its limited GUI and OpenGL support.

Click links below for detailed setup for each platform:

After finishing building, use run.py to run ZENO for development! You may click File -> Open to play graphs/LorenzParticleTrail.zsg to confirm everything is working well :)

Miscellaneous

Write your own extension!

See zenustech/zeno_addon_wizard for an example on how to write custom nodes in ZENO.

Contributors

Thank you to all the people who have already contributed to ZENO!

Contributors

License

ZENO is licensed under the Mozilla Public License Version 2.0, see LICENSE for more information.

Contact us

You may contact us via WeChat:

  • @zhxx1987: shinshinzhang

  • @archibate: tanh233

Comments
  • RuntimeError

    RuntimeError

    Hello!

    I'am in windows and unpacked the zeno-windows-2021.7.2.zip.

    I can't use any nodes and I will get RuntimeError when I click Execute. image

    Simply use the forloop.zsg and I get nothing in screen. image

    I want to know where I did it wrong.

    opened by darkwuta 14
  • [BUG] bug report

    [BUG] bug report

    FunBegin 和 FuncEnd 输出一个可调用对象function。我想在一个某个节点中多次调用这个函数: image 但实际上,在每个subframe的第一次调用,function会执行两次,第二次及以后的调用,function不会被执行,rets为第一次调用的结果。 image

    我用尽可能用简洁明了的代码复现了这个问题,push了functional分支,编译命令为 ··· cmake -B build -DEXTENSION_Functional:BOOL=ON ···

    zsg文件为zeno目录下的nonlinear.zsg

    Environment

    • System: ubuntu 20.04
    • Zeno Version: master分支
    bug 
    opened by mapengfei-nwpu 6
  • [BUG] bug report

    [BUG] bug report

    Problem: build success but run failed

    image

    D:\zeno>python run.py
    ZENO repo directory at: D:\zeno
    Traceback (most recent call last):
      File "D:\zeno\run.py", line 15, in <module>
        runpy.run_module('zenqt')
      File "D:\Users\ywj12\AppData\Local\Programs\Python\Python39\lib\runpy.py", line 213, in run_module
        return _run_code(code, {}, init_globals, run_name, mod_spec)
      File "D:\Users\ywj12\AppData\Local\Programs\Python\Python39\lib\runpy.py", line 87, in _run_code
        exec(code, run_globals)
      File "D:\zeno\zenqt\__main__.py", line 4, in <module>
        sys.exit(_main())
      File "D:\zeno\zenqt\main.py", line 9, in main
        from .ui.main import main as _main
      File "D:\zeno\zenqt\ui\main.py", line 8, in <module>
        from .window import MainWindow
      File "D:\Users\ywj12\AppData\Local\Programs\Python\Python39\Lib\site-packages\shiboken2\files.dir\shibokensupport\__feature__.py", line 142, in _import
        return original_import(name, *args, **kwargs)
      File "D:\zeno\zenqt\ui\window.py", line 7, in <module>
        from .visualize.viewport import DisplayWidget
      File "D:\Users\ywj12\AppData\Local\Programs\Python\Python39\Lib\site-packages\shiboken2\files.dir\shibokensupport\__feature__.py", line 142, in _import
        return original_import(name, *args, **kwargs)
      File "D:\zeno\zenqt\ui\visualize\viewport.py", line 11, in <module>
        from . import zenvis
      File "D:\Users\ywj12\AppData\Local\Programs\Python\Python39\Lib\site-packages\shiboken2\files.dir\shibokensupport\__feature__.py", line 142, in _import
        return original_import(name, *args, **kwargs)
      File "D:\zeno\zenqt\ui\visualize\zenvis.py", line 1, in <module>
        from ...bin import pylib_zenvis as core
    ImportError: cannot import name 'pylib_zenvis' from 'zenqt.bin' (unknown location)
    

    Environment

    • System: Windows 10
    • IDE: VS 2022
    • Zeno Version: 2021.11.23
    bug 
    opened by yinweijie 6
  • [BUG] Got

    [BUG] Got "Expected class-name before '{' token" error when compiling under manjaro

    My cmake flag is $ cmake -B build -DEXTENSION_gmpm:BOOL=ON -DEXTENSION_mesher:BOOL=ON -DEXTENSION_FastFLIP:BOOL=ON -DEXTENSION_zenvdb:BOOL=ON -DZENOFX_ENABLE_OPENVDB:BOOL=ON -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON Got error while compiling /projects/gmpm/zecomp/include/zensim/cuda/Cuda.cu: /home/peter/zeno/projects/gmpm/zecomp/include/zensim/meta/Sequence.h:132:189: 错误:expected class-name before ‘{’ token 132 | struct shuffle_convert_impl<Unary, index_seq<Js...>> | ^ /home/peter/zeno/projects/gmpm/zecomp/include/zensim/meta/Sequence.h:141:188: 错误:expected class-name before ‘{’ token 141 | template <std::size_t... Js> struct shuffle_impl<index_seq<Js...>> | ^ /home/peter/zeno/projects/gmpm/zecomp/include/zensim/meta/Sequence.h:211:189: 错误:expected class-name before ‘{’ token 211 | template <std::size_t... Js> struct shuffle_impl<index_seq<Js...>> | ^ I guess it is an c++17 related preprocessing error with the fold expression struct shuffle_convert_impl<Unary, index_seq<Js...>>, but I don't know whether c++17 is enabled, the verbose output of make shows that there is no -std=c++17 flag. image Eventhough I manually add -std=c++17 flag and recompile the file the error is still there: image My nvcc supports c++17 image

    Environment

    • System: Manjaro Linux [x86_64]
    • Zeno Version: 2021.12.20
    • Graphics card (for viewport bugs): RTX 3070 Mobile / Max-Q
    bug 
    opened by jiangjiechu 4
  • [win10-zeno2021-9-7] little Bug for Run Animation

    [win10-zeno2021-9-7] little Bug for Run Animation

    when I have a success simulation Run, then drag the timeline sign back to the "zero frame" and then click "Run" will not execute the simulation(animation) again, It will show the "simulating" but just stop at the zero frame. but if I drag to the others frame, it will execute the simulation as expectation

    opened by SoTosorrow 4
  • [BUG] Fail to launch ZENO on Windows

    [BUG] Fail to launch ZENO on Windows

    Describe the bug (both Chinese and English are OK) Cannot launch the latest release 2022.3.1 on Windows. Environment: NVIDIA 940MX; CUDA 10.1; Windows 10. Error Message: 无法定位程序输入点 cuGetProcAddress 于动态链接库 xxx/zeno_mpm.dll 上

    How To Reproduce

    1. Click launcher.exe;
    2. The error occurs.

    Screenshots N/A

    Environment

    • System: Windows 10
    • Zeno Version: 2022.3.1
    • Blender Version (if using it): N/A
    • Graphics card (for viewport bugs): GTX 940MX
    bug 
    opened by Mike-Leo-Smith 3
  • seg fault

    seg fault

    when I use Make3DGridPrimitive and ParticlesNeighborWrangle, zeno(master branch, zfx2) cannot work and return -11

    here is the zsg file

    test.txt

    rename this file as test.zsg to open in zeno

    opened by BenXu86 3
  • reserved identifier violation

    reserved identifier violation

    opened by elfring 1
  • USD integration (WIP, Do not merge)

    USD integration (WIP, Do not merge)

    1. 搭建了基本的环境,设置cmake选项
    -DPXR_USD_LOCATION=C:/DEV_PROJECT/dev-library/usd-build
    -DZENO_WITH_USD=ON
    

    usd-build是已经从源码构建好的USD版本

    2.尝试替换ObjectManager为StageManager作为中间层。

    opened by aaronmack 0
  • [BUG] bug report 8.24版本打开flip.zsg缺少节点

    [BUG] bug report 8.24版本打开flip.zsg缺少节点

    该版本:zeno-2022.8.24-x86_64-windows-cuda.zip 打开graph/flip.zsg出现警告如下

    modelacceptor.cpp:138 no code class named [SmoothLiquidSDF] modelacceptor.cpp:138 no code class named [GenericFLIPSolver]

    bug 
    opened by yyf0202 0
Releases(2022.9.27)
  • 2022.9.27(Sep 27, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit c1e7afb184c0ecc1bd6f0451572f05b9c8b3aba2

    • message [release] Merge branch 'master' of https://github.com/zenustech/zeno

    • version 2022.9.27

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 20.04 and above, otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 20.04 以上的系统,否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.9.27-x86_64-linux-cpu.tar.gz(46.79 MB)
    zeno-2022.9.27-x86_64-linux-cuda.tar.gz(46.41 MB)
    zeno-2022.9.27-x86_64-windows-cpu.zip(44.88 MB)
    zeno-2022.9.27-x86_64-windows-cuda.zip(45.05 MB)
  • 2022.9.11(Sep 11, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit 6ad8c5135341551097eed6ab390fd8d81382a4bc

    • message [release] qutmdwxlcuda

    • version 2022.9.11

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 20.04 and above, otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 20.04 以上的系统,否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.9.11-x86_64-linux-cpu.tar.gz(81.76 MB)
    zeno-2022.9.11-x86_64-linux-cuda.tar.gz(81.37 MB)
    zeno-2022.9.11-x86_64-windows-cpu.zip(57.89 MB)
    zeno-2022.9.11-x86_64-windows-cuda.zip(58.06 MB)
  • 2022.8.24(Aug 24, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit f045c44040cd3d212b94acf4c922fb57028d43ca

    • message [release] ignore exit code 1

    • version 2022.8.24

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.8.24-x86_64-linux-cpu.tar.gz(45.64 MB)
    zeno-2022.8.24-x86_64-linux-cuda.tar.gz(45.29 MB)
    zeno-2022.8.24-x86_64-windows-cpu.zip(44.98 MB)
    zeno-2022.8.24-x86_64-windows-cuda.zip(45.13 MB)
  • 2022.8.16(Aug 16, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit 74dd0c7e2e8bba245f58717d3cd16ff4c15297bc

    • message [release] Merge branch 'master' of https://github.com/zenustech/zeno

    • version 2022.8.16

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.8.16-x86_64-linux-cpu.tar.gz(64.73 MB)
    zeno-2022.8.16-x86_64-linux-cuda.tar.gz(83.74 MB)
    zeno-2022.8.16-x86_64-windows-cpu.zip(44.93 MB)
    zeno-2022.8.16-x86_64-windows-cuda.zip(45.07 MB)
  • 2022.8.11(Aug 11, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit 7ed08a1bee8827a68280b1f7fa51192d7040127c

    • message [release] cihou roy pyramid

    • version 2022.8.11

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.8.11-x86_64-linux-cpu.tar.gz(64.62 MB)
    zeno-2022.8.11-x86_64-linux-cuda.tar.gz(83.63 MB)
    zeno-2022.8.11-x86_64-windows-cpu.zip(44.85 MB)
    zeno-2022.8.11-x86_64-windows-cuda.zip(45.00 MB)
  • 2022.8.8(Aug 8, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit c424a045588436dd6c67a9bbc1d7e9dc07e7bf9b

    • message [release] Merge branch 'master' of https://github.com/zenustech/zeno

    • version 2022.8.8

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.8.8-x86_64-linux-cpu.tar.gz(64.45 MB)
    zeno-2022.8.8-x86_64-linux-cuda.tar.gz(83.46 MB)
    zeno-2022.8.8-x86_64-windows-cpu.zip(44.69 MB)
    zeno-2022.8.8-x86_64-windows-cuda.zip(44.84 MB)
  • 2022.8.2(Aug 2, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit cb22c772d577eadd1ddb3747f056ba9501f6db66

    • message [release] okwxl

    • version 2022.8.2

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.8.2-x86_64-linux-cpu.tar.gz(64.44 MB)
    zeno-2022.8.2-x86_64-linux-cuda.tar.gz(83.41 MB)
    zeno-2022.8.2-x86_64-windows-cpu.zip(44.58 MB)
    zeno-2022.8.2-x86_64-windows-cuda.zip(44.72 MB)
  • 2022.7.28(Jul 28, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit a152c01cb5ab1bfd3f3cda4059ea09e382f722f7

    • message [release] neednrrow

    • version 2022.7.28

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.7.28-x86_64-linux-cpu.tar.gz(64.30 MB)
    zeno-2022.7.28-x86_64-linux-cuda.tar.gz(83.27 MB)
    zeno-2022.7.28-x86_64-windows-cpu.zip(44.52 MB)
    zeno-2022.7.28-x86_64-windows-cuda.zip(44.66 MB)
  • 2022.7.25(Jul 25, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit 1ca873910f90df798c4154dcb8d6ffe059b655c5

    • message [release] refix

    • version 2022.7.25

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.7.25-x86_64-linux-cpu.tar.gz(64.10 MB)
    zeno-2022.7.25-x86_64-linux-cuda.tar.gz(83.04 MB)
    zeno-2022.7.25-x86_64-windows-cpu.zip(44.45 MB)
    zeno-2022.7.25-x86_64-windows-cuda.zip(44.59 MB)
  • 2022.7.24(Jul 24, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit 900e55c2aab37fff9c7191cebca0afabd924b557

    • message [release] guntmdcgal

    • version 2022.7.24

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.7.24-x86_64-linux-cpu.tar.gz(64.07 MB)
    zeno-2022.7.24-x86_64-linux-cuda.tar.gz(83.02 MB)
    zeno-2022.7.24-x86_64-windows-cpu.zip(44.43 MB)
    zeno-2022.7.24-x86_64-windows-cuda.zip(44.57 MB)
  • 2022.7.22(Jul 22, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit 14022c8db6a93cbe36b220fb0e00d9f5d1e882db

    • message [release] test utf8

    • version 2022.7.22

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.7.22-x86_64-linux-cpu.tar.gz(64.00 MB)
    zeno-2022.7.22-x86_64-linux-cuda.tar.gz(82.95 MB)
    zeno-2022.7.22-x86_64-windows-cpu.zip(44.37 MB)
    zeno-2022.7.22-x86_64-windows-cuda.zip(44.51 MB)
  • 2022.7.17(Jul 17, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit 0335eff4e2c7edb36a7336a8aa73233845f82b14

    • message [release] recihou caoteacher

    • version 2022.7.17

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.7.17-x86_64-linux-cpu.tar.gz(63.89 MB)
    zeno-2022.7.17-x86_64-linux-cuda.tar.gz(82.82 MB)
    zeno-2022.7.17-x86_64-windows-cpu.zip(44.32 MB)
    zeno-2022.7.17-x86_64-windows-cuda.zip(44.47 MB)
  • 2022.7.5(Jul 5, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit 8462f51c060b608a70b7d16526d2928902c0e501

    • message [release] mabiwxl

    • version 2022.7.5

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.7.5-x86_64-linux-cpu.tar.gz(63.66 MB)
    zeno-2022.7.5-x86_64-linux-cuda.tar.gz(82.61 MB)
    zeno-2022.7.5-x86_64-windows-cpu.zip(44.17 MB)
    zeno-2022.7.5-x86_64-windows-cuda.zip(44.31 MB)
  • 2022.6.28(Jun 28, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit 16baf30300e8c03ac8ddf7c6fabe0a80a13c159a

    • message [release] fixdprfloat

    • version 2022.6.28

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.6.28-x86_64-linux-cpu.tar.gz(62.90 MB)
    zeno-2022.6.28-x86_64-linux-cuda.tar.gz(81.77 MB)
    zeno-2022.6.28-x86_64-windows-cpu.zip(43.63 MB)
    zeno-2022.6.28-x86_64-windows-cuda.zip(43.77 MB)
  • 2022.6.24(Jun 24, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit 1b27595a95310f0fe32140b2800d67d2114f5489

    • message [release] recihou

    • version 2022.6.24

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.6.24-x86_64-linux-cpu.tar.gz(62.85 MB)
    zeno-2022.6.24-x86_64-linux-cuda.tar.gz(81.74 MB)
    zeno-2022.6.24-x86_64-windows-cpu.zip(40.43 MB)
    zeno-2022.6.24-x86_64-windows-cuda.zip(40.57 MB)
  • 2022.6.20(Jun 20, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布)

    • branch refs/heads/master

    • commit ca55c86e27b7c9e9f77074940e76869ba36d7a57

    • message [release] no more fking optix

    • version 2022.6.20

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.6.20-x86_64-linux-cuda.tar.gz(84.87 MB)
    zeno-2022.6.20-x86_64-windows-cuda.zip(42.01 MB)
  • 2022.6.16(Jun 16, 2022)

    (Automated Release by Github Actions / 由 GitHub CI/CD 自动发布,周航不得删除)

    • branch refs/heads/master

    • commit 7b86b99e9b0c7ad9d3f00f26ea7619f8dd6797aa

    • message [release] fuckuv

    • version 2022.6.16

    • Windows: After download, extract the zip file to a directory, then double-click the file 000_start.bat in that directory to start our application. Alternatively you may manually run zenoedit.exe. If you encounter bugs, please let us know by submitting a Github Issue, thank for your support!

    • Linux: Our released binary support Ubuntu 18.04 and above (glibcxx >= 3.4.26, glibc >= 2.14), otherwise please build from source. Extract the downloaded tar.gz to a directory, then run bash 000_start.sh in that directory to start our application. Alternatively you may manually run usr/bin/zenoedit in there. Try chmod +x usr/bin/* if they don't have execute permission.

    • Windows: 下载后,把 zip 文件解压到一个目录,然后双击其中的 000_start.bat 这个文件,即可启动我们的程序。此外您也可以找到 zenoedit.exe 直接双击运行。如果您遇到了 BUG,请通过提交 Github Issue 的方式来反馈给我们, 感谢您的支持!

    • Linux: 我们发布的二进制版支持 Ubuntu 18.04 以上的系统 (glibcxx >= 3.4.26, glibc >= 2.14),否则请从源码构建。把下载的 tar.gz 文件解压到一个目录,然后在那个目录中运行命令 bash 000_start.sh 即可启动我们的程序。此外您也可以直接运行其中的 usr/bin/zenoedit。如果遇到没有执行权限的问题可以试试看 chmod +x usr/bin/*

    Source code(tar.gz)
    Source code(zip)
    zeno-2022.6.16-x86_64-linux-cpu.tar.gz(65.94 MB)
    zeno-2022.6.16-x86_64-windows-cpu.zip(41.86 MB)
  • 2022.4.9(Apr 11, 2022)

  • 2022.3.28(Mar 28, 2022)

  • v2022.2.22(Feb 23, 2022)

  • 2021.12.20(Dec 20, 2021)

  • 2021.12.17(Dec 17, 2021)

Owner
Zenus Technology
Shenzhen Zenus Technology Co. Ltd.
Zenus Technology
C++11 provides chainable and iterable object for uniform die casts. Useful for statistics or table top RPG simulations.

12/1/2018 Due to feedback about compile-time limitations, the api has been changed since release. The api now supports user-defined literals which mak

null 12 Sep 5, 2021
Gaming meets modern C++ - a fast and reliable entity component system (ECS) and much more

EnTT is a header-only, tiny and easy to use library for game programming and much more written in modern C++. Among others, it's used in Minecraft by

Michele Caini 7.6k Dec 30, 2022
Phan Sang 17 Dec 29, 2022
EyeLog Can Record And Steal Consecutive Keystrokes (and much more) That The User Enters On A Device

What This EyeLog EyeLog Is A Keylogger Can Record And Steal Consecutive Keystrokes (and much more) That The User Enters On A Device How To Setup EyeLo

sami 2 Dec 28, 2021
A collection of valorant cheating codes, including offsets, world to screen and much more!

Valorant External Cheating Help Always up to date Valorant Offsets + a wide variety of noob friendly helper functions. Functions are not heaviky teste

P. B. 15 Jun 12, 2022
Project PLS is developed based on icarus iverilog and will compile verilog into a much faster optimized model.

Getting Started with PLS The project is developed based on icarus iverilog. Special thanks to Stephen Williams ([email protected]). PLS is a Verilog si

null 11 Dec 19, 2022
Integrate the ZENO node system into Blender for creating robust physics animations!

ZenoBlend Integrate the ZENO node system into Blender for creating robust physics animations! End-user Installation Goto Release page, and click Asset

Zenus Technology 36 Oct 28, 2022
A program to backup all of your game savefiles on your system, neatly, and into a single folder.

Savefile Saver I created this project as a solution to a simple, but annoying problem: Backing up my game savefiles. I wanted to be able to copy all o

Dominic Esposito 6 Oct 24, 2022
This repository uses a ROS node to subscribe to camera (hikvision) and lidar (livox) data. After the node merges the data, it publishes the colored point cloud and displays it in rviz.

fusion-lidar-camera-ROS 一、介绍 本仓库是一个ROS工作空间,其中ws_fusion_camera/src有一个工具包color_pc ws_fusion_camera │ README.md │ └───src │ └───package: c

hongyu wang 23 Dec 7, 2022
A package to use Material side sheet into your Flutter project. Learn more about side sheet at Material.io

Side Sheet A package to use Material side sheet into your Flutter project. Learn more about side sheet at Material.io Platform Support Android iOS Mac

Lalit Jarwal 6 Aug 25, 2022
OpenScan is an open-source document scanner app that enables users to scan hard copies of documents or notes and convert it into a PDF file. No ads. No data collection. We respect your privacy.

OpenScan An open source app that enables users to scan hardcopies of documents or notes and convert it to a PDF file. No ads. No data collection. We r

Ethereal Developers Inc 1.2k Jan 4, 2023
An open collection of tools and experiments for rendering wide-gamut scene-linear data into an image for an SDR or HDR display device.

Open Display Transform An open collection of tools and experiments for rendering wide-gamut scene-linear data into an image for an SDR or HDR display

Jed Smith 127 Dec 29, 2022
A header maker, this project will create your header file with all your declaration in

Headermaker Install: git clone https://github.com/rmechety42/Headermaker.git cd Headermaker make install Usage: Headermaker src_folder_you_want_to

Rayan Mechety 35 Dec 8, 2022
Libft is an individual project at 42 that requires us to re-create some standard C library functions including some additional ones that can be used later to build a library of useful functions for the rest of the program.

Libft is an individual project at 42 that requires us to re-create some standard C library functions including some additional ones that can be used later to build a library of useful functions for the rest of the program.

Paulo Rafael Ramalho 0 Jan 1, 2023
A python package to provide you with many useful tools for osu! servers, written in C++ for the best speeds possible.

pysu_bindings A python package to provide you with many useful tools for osu! servers, written in C++ for the best speeds possible. What? As most peop

James 2 Nov 29, 2021
taos-tools are some useful tool collections for TDengine.

taos-tools taos-tools are some useful tool collections for TDengine. How to build from source? install dependencies For Ubuntu/Debian system sudo apt

null 20 Dec 23, 2022
Library with useful output stream tools like: color and style manipulators, progress bars and terminal graphics.

Library with useful output stream tools like: color and style manipulators, progress bars and terminal graphics Table of contents Introduction Documen

Gianluca Bianco 168 Dec 20, 2022
DLBFoam: Dynamic load balancing for fast reactive simulations

DLBFoam: Dynamic load balancing for fast reactive simulations DLBFoam v1.1 - What's new? DLBFoam v1.1 introduces a fully analytical chemistry Jacobian

Aalto-CFD 47 Dec 31, 2022