Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Run Unit Test
run: |
build/bin/UnitTests
gcovr --gcov-executable "gcov-${{ matrix.version }}" --root . --filter '^Sources/' --sonarqube build/coverage.xml build
gcovr --gcov-executable "gcov-${{ matrix.version }}" --root . --filter '^(Includes|Sources)/' --sonarqube build/coverage.xml build
- name: SonarCloud Scan
run: sonar-scanner -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=utilforever-github
env:
Expand Down
19 changes: 19 additions & 0 deletions Includes/API/Python/Particle/MPM/MPMSystemData.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// This code is based on Jet framework.
// Copyright (c) 2018 Doyub Kim
// CubbyFlow is voxel-based fluid simulation engine for computer games.
// Copyright (c) 2020 CubbyFlow Team
// Core Part: Chris Ohk, Junwoo Hwang, Jihong Sin, Seungwoo Yoo
// AI Part: Dongheon Cho, Minseo Kim
// We are making my contributions/submissions to this project solely in our
// personal capacity and are not conveying any rights to any intellectual
// property of any third parties.

#ifndef CUBBYFLOW_PYTHON_MPM_SYSTEM_DATA_HPP
#define CUBBYFLOW_PYTHON_MPM_SYSTEM_DATA_HPP

#include <pybind11/pybind11.h>

void AddMPMSystemData2(pybind11::module& m);
void AddMPMSystemData3(pybind11::module& m);

#endif
Loading
Loading