Reestructured folders

This commit is contained in:
Irlan
2019-06-24 10:16:16 -03:00
parent 1876592d22
commit b18dae8f9d
17 changed files with 22 additions and 22 deletions

View File

@ -19,8 +19,8 @@
#ifndef B3_CLOTH_CONTACT_MANAGER_H
#define B3_CLOTH_CONTACT_MANAGER_H
#include <bounce/cloth/cloth_particle_body_contact.h>
#include <bounce/cloth/cloth_particle_triangle_contact.h>
#include <bounce/cloth/contacts/cloth_particle_body_contact.h>
#include <bounce/cloth/contacts/cloth_particle_triangle_contact.h>
#include <bounce/collision/broad_phase.h>
#include <bounce/common/memory/block_pool.h>
#include <bounce/common/template/list.h>

View File

@ -20,7 +20,7 @@
#define B3_DIAG_MAT_33_H
#include <bounce/common/math/mat33.h>
#include <bounce/cloth/dense_vec3.h>
#include <bounce/sparse/dense_vec3.h>
// Diagonal matrix storing only the diagonal elements of the
// original matrix.

View File

@ -20,8 +20,8 @@
#define B3_SPARSE_MAT_33_H
#include <bounce/common/math/mat33.h>
#include <bounce/cloth/diag_mat33.h>
#include <bounce/cloth/dense_vec3.h>
#include <bounce/sparse/diag_mat33.h>
#include <bounce/sparse/dense_vec3.h>
// An element in a sparse matrix.
struct b3RowValue

View File

@ -19,7 +19,7 @@
#ifndef B3_SPARSE_MAT_33_VIEW_H
#define B3_SPARSE_MAT_33_VIEW_H
#include <bounce/cloth/sparse_mat33.h>
#include <bounce/sparse/sparse_mat33.h>
struct b3ArrayRowValue
{

View File

@ -19,7 +19,7 @@
#ifndef B3_SPARSE_SYM_MAT_33_H
#define B3_SPARSE_SYM_MAT_33_H
#include <bounce/cloth/sparse_mat33.h>
#include <bounce/sparse/sparse_mat33.h>
// A sparse symmetric matrix.
// Each row is a list of non-zero elements in the row.

View File

@ -19,8 +19,8 @@
#ifndef B3_SPARSE_SYM_MAT_33_VIEW_H
#define B3_SPARSE_SYM_MAT_33_VIEW_H
#include <bounce/cloth/sparse_mat33_view.h>
#include <bounce/cloth/sparse_sym_mat33.h>
#include <bounce/sparse/sparse_mat33_view.h>
#include <bounce/sparse/sparse_sym_mat33.h>
// A read-only sparse symmetric matrix.
struct b3SparseSymMat33View