Small refactor. Removed b3SparseSymMat33 since it is very particular. Pushed experimental b3ShearForce.
This commit is contained in:
@ -69,6 +69,7 @@
|
||||
#include <bounce/cloth/particle.h>
|
||||
#include <bounce/cloth/cloth_triangle.h>
|
||||
#include <bounce/cloth/strech_force.h>
|
||||
#include <bounce/cloth/shear_force.h>
|
||||
#include <bounce/cloth/spring_force.h>
|
||||
|
||||
#include <bounce/cloth/garment/sewing_pattern.h>
|
||||
|
@ -58,8 +58,9 @@ struct b3ClothDef
|
||||
mesh = nullptr;
|
||||
density = 0.0f;
|
||||
streching = 0.0f;
|
||||
sewing = 0.0f;
|
||||
shearing = 0.0f;
|
||||
bending = 0.0f;
|
||||
sewing = 0.0f;
|
||||
damping = 0.0f;
|
||||
thickness = 0.0f;
|
||||
friction = 0.2f;
|
||||
@ -74,6 +75,9 @@ struct b3ClothDef
|
||||
// Streching stiffness
|
||||
float32 streching;
|
||||
|
||||
// Shearing stiffness
|
||||
float32 shearing;
|
||||
|
||||
// Bending stiffness
|
||||
float32 bending;
|
||||
|
||||
@ -156,6 +160,7 @@ public:
|
||||
private:
|
||||
friend class b3Particle;
|
||||
friend class b3ClothTriangle;
|
||||
friend class b3ShearForce;
|
||||
friend class b3StrechForce;
|
||||
friend class b3SpringForce;
|
||||
friend class b3ClothContactManager;
|
||||
|
@ -29,8 +29,8 @@ class b3Force;
|
||||
|
||||
struct b3DenseVec3;
|
||||
struct b3DiagMat33;
|
||||
struct b3SparseSymMat33;
|
||||
struct b3SparseSymMat33View;
|
||||
struct b3SparseMat33;
|
||||
struct b3SparseMat33View;
|
||||
|
||||
struct b3ClothForceSolverDef
|
||||
{
|
||||
@ -47,8 +47,8 @@ struct b3ClothForceSolverData
|
||||
b3DenseVec3* v;
|
||||
b3DenseVec3* f;
|
||||
b3DenseVec3* y;
|
||||
b3SparseSymMat33* dfdx;
|
||||
b3SparseSymMat33* dfdv;
|
||||
b3SparseMat33* dfdx;
|
||||
b3SparseMat33* dfdv;
|
||||
b3DiagMat33* S;
|
||||
b3DenseVec3* z;
|
||||
};
|
||||
|
@ -42,6 +42,7 @@ public:
|
||||
private:
|
||||
friend class b3Cloth;
|
||||
friend class b3Particle;
|
||||
friend class b3ShearForce;
|
||||
friend class b3StrechForce;
|
||||
friend class b3ClothContactManager;
|
||||
friend class b3ParticleTriangleContact;
|
||||
|
@ -30,6 +30,7 @@ class b3Particle;
|
||||
enum b3ForceType
|
||||
{
|
||||
e_strechForce,
|
||||
e_shearForce,
|
||||
e_springForce,
|
||||
};
|
||||
|
||||
|
@ -112,15 +112,16 @@ public:
|
||||
private:
|
||||
friend class b3List2<b3Particle>;
|
||||
friend class b3Cloth;
|
||||
friend class b3ClothTriangle;
|
||||
friend class b3ClothContactManager;
|
||||
friend class b3ClothSolver;
|
||||
friend class b3ClothForceSolver;
|
||||
friend class b3ClothContactManager;
|
||||
friend class b3ClothTriangle;
|
||||
friend class b3ParticleBodyContact;
|
||||
friend class b3ParticleTriangleContact;
|
||||
friend class b3ClothContactSolver;
|
||||
friend class b3Force;
|
||||
friend class b3StrechForce;
|
||||
friend class b3ShearForce;
|
||||
friend class b3SpringForce;
|
||||
|
||||
b3Particle(const b3ParticleDef& def, b3Cloth* cloth);
|
||||
|
114
include/bounce/cloth/shear_force.h
Normal file
114
include/bounce/cloth/shear_force.h
Normal file
@ -0,0 +1,114 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2019 Irlan Robson https://irlanrobson.github.io
|
||||
*
|
||||
* This software is provided 'as-is', without any express or implied
|
||||
* warranty. In no event will the authors be held liable for any damages
|
||||
* arising from the use of this software.
|
||||
* Permission is granted to anyone to use this software for any purpose,
|
||||
* including commercial applications, and to alter it and redistribute it
|
||||
* freely, subject to the following restrictions:
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software. If you use this software
|
||||
* in a product, an acknowledgment in the product documentation would be
|
||||
* appreciated but is not required.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*/
|
||||
|
||||
#ifndef B3_SHEAR_FORCE_H
|
||||
#define B3_SHEAR_FORCE_H
|
||||
|
||||
#include <bounce/cloth/force.h>
|
||||
|
||||
class b3ClothTriangle;
|
||||
|
||||
struct b3ShearForceDef : public b3ForceDef
|
||||
{
|
||||
b3ShearForceDef()
|
||||
{
|
||||
type = e_shearForce;
|
||||
}
|
||||
|
||||
// Triangle
|
||||
b3ClothTriangle* triangle;
|
||||
|
||||
// Shearing stiffness
|
||||
float32 shearing;
|
||||
|
||||
// Damping stiffness
|
||||
float32 damping;
|
||||
};
|
||||
|
||||
// Shear force acting on a cloth triangle.
|
||||
class b3ShearForce : public b3Force
|
||||
{
|
||||
public:
|
||||
bool HasParticle(const b3Particle* particle) const;
|
||||
|
||||
b3ClothTriangle* GetTriangle() const;
|
||||
|
||||
float32 GetShearingStiffness() const;
|
||||
|
||||
float32 GetDampingStiffness() const;
|
||||
|
||||
b3Vec3 GetActionForce1() const;
|
||||
|
||||
b3Vec3 GetActionForce2() const;
|
||||
|
||||
b3Vec3 GetActionForce3() const;
|
||||
private:
|
||||
friend class b3Force;
|
||||
friend class b3Cloth;
|
||||
|
||||
b3ShearForce(const b3ShearForceDef* def);
|
||||
~b3ShearForce();
|
||||
|
||||
void Apply(const b3ClothForceSolverData* data);
|
||||
|
||||
// Solver shared
|
||||
|
||||
// Triangle
|
||||
b3ClothTriangle* m_triangle;
|
||||
|
||||
// Shearing stiffness
|
||||
float32 m_ks;
|
||||
|
||||
// Damping stiffness
|
||||
float32 m_kd;
|
||||
|
||||
// Action forces
|
||||
b3Vec3 m_f1, m_f2, m_f3;
|
||||
};
|
||||
|
||||
inline b3ClothTriangle* b3ShearForce::GetTriangle() const
|
||||
{
|
||||
return m_triangle;
|
||||
}
|
||||
|
||||
inline float32 b3ShearForce::GetShearingStiffness() const
|
||||
{
|
||||
return m_ks;
|
||||
}
|
||||
|
||||
inline float32 b3ShearForce::GetDampingStiffness() const
|
||||
{
|
||||
return m_kd;
|
||||
}
|
||||
|
||||
inline b3Vec3 b3ShearForce::GetActionForce1() const
|
||||
{
|
||||
return m_f1;
|
||||
}
|
||||
|
||||
inline b3Vec3 b3ShearForce::GetActionForce2() const
|
||||
{
|
||||
return m_f2;
|
||||
}
|
||||
|
||||
inline b3Vec3 b3ShearForce::GetActionForce3() const
|
||||
{
|
||||
return m_f3;
|
||||
}
|
||||
|
||||
#endif
|
@ -1,337 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2019 Irlan Robson https://irlanrobson.github.io
|
||||
*
|
||||
* This software is provided 'as-is', without any express or implied
|
||||
* warranty. In no event will the authors be held liable for any damages
|
||||
* arising from the use of this software.
|
||||
* Permission is granted to anyone to use this software for any purpose,
|
||||
* including commercial applications, and to alter it and redistribute it
|
||||
* freely, subject to the following restrictions:
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software. If you use this software
|
||||
* in a product, an acknowledgment in the product documentation would be
|
||||
* appreciated but is not required.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*/
|
||||
|
||||
#ifndef B3_SPARSE_SYM_MAT_33_H
|
||||
#define B3_SPARSE_SYM_MAT_33_H
|
||||
|
||||
#include <bounce/sparse/sparse_mat33.h>
|
||||
|
||||
// A sparse symmetric matrix.
|
||||
// Each row is a list of non-zero elements in the row.
|
||||
// The total matrix capacity is bounded by
|
||||
// M * (M + 1) / 2
|
||||
// You must write only the upper triangle elements of the original
|
||||
// matrix to this matrix because a_ji = a_ij.
|
||||
struct b3SparseSymMat33
|
||||
{
|
||||
//
|
||||
b3SparseSymMat33();
|
||||
|
||||
//
|
||||
b3SparseSymMat33(u32 m);
|
||||
|
||||
//
|
||||
b3SparseSymMat33(const b3SparseSymMat33& _m);
|
||||
|
||||
//
|
||||
~b3SparseSymMat33();
|
||||
|
||||
//
|
||||
b3SparseSymMat33& operator=(const b3SparseSymMat33& _m);
|
||||
|
||||
//
|
||||
void Copy(const b3SparseSymMat33& _m);
|
||||
|
||||
//
|
||||
void Destroy();
|
||||
|
||||
//
|
||||
b3Mat33& operator()(u32 i, u32 j);
|
||||
|
||||
//
|
||||
const b3Mat33& operator()(u32 i, u32 j) const;
|
||||
|
||||
//
|
||||
void operator+=(const b3SparseSymMat33& m);
|
||||
|
||||
//
|
||||
void operator-=(const b3SparseSymMat33& m);
|
||||
|
||||
u32 rowCount;
|
||||
b3RowValueList* rows;
|
||||
};
|
||||
|
||||
inline b3SparseSymMat33::b3SparseSymMat33()
|
||||
{
|
||||
rowCount = 0;
|
||||
rows = nullptr;
|
||||
}
|
||||
|
||||
inline b3SparseSymMat33::b3SparseSymMat33(u32 m)
|
||||
{
|
||||
rowCount = m;
|
||||
rows = (b3RowValueList*)b3Alloc(rowCount * sizeof(b3RowValueList));
|
||||
for (u32 i = 0; i < rowCount; ++i)
|
||||
{
|
||||
new (rows + i)b3RowValueList();
|
||||
}
|
||||
}
|
||||
|
||||
inline b3SparseSymMat33::b3SparseSymMat33(const b3SparseSymMat33& m)
|
||||
{
|
||||
rowCount = m.rowCount;
|
||||
rows = (b3RowValueList*)b3Alloc(rowCount * sizeof(b3RowValueList));
|
||||
for (u32 i = 0; i < rowCount; ++i)
|
||||
{
|
||||
new (rows + i)b3RowValueList();
|
||||
}
|
||||
|
||||
Copy(m);
|
||||
}
|
||||
|
||||
inline b3SparseSymMat33::~b3SparseSymMat33()
|
||||
{
|
||||
Destroy();
|
||||
}
|
||||
|
||||
inline void b3SparseSymMat33::Destroy()
|
||||
{
|
||||
for (u32 i = 0; i < rowCount; ++i)
|
||||
{
|
||||
b3RowValueList* vs = rows + i;
|
||||
|
||||
b3RowValue* v = vs->head;
|
||||
while (v)
|
||||
{
|
||||
b3RowValue* v0 = v->next;
|
||||
b3Free(v);
|
||||
v = v0;
|
||||
}
|
||||
|
||||
vs->~b3RowValueList();
|
||||
}
|
||||
|
||||
b3Free(rows);
|
||||
}
|
||||
|
||||
inline b3SparseSymMat33& b3SparseSymMat33::operator=(const b3SparseSymMat33& _m)
|
||||
{
|
||||
if (_m.rows == rows)
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
Destroy();
|
||||
|
||||
rowCount = _m.rowCount;
|
||||
rows = (b3RowValueList*)b3Alloc(rowCount * sizeof(b3RowValueList));
|
||||
for (u32 i = 0; i < rowCount; ++i)
|
||||
{
|
||||
new (rows + i)b3RowValueList();
|
||||
}
|
||||
|
||||
Copy(_m);
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
inline void b3SparseSymMat33::Copy(const b3SparseSymMat33& _m)
|
||||
{
|
||||
B3_ASSERT(rowCount == _m.rowCount);
|
||||
|
||||
for (u32 i = 0; i < rowCount; ++i)
|
||||
{
|
||||
b3RowValueList* vs1 = _m.rows + i;
|
||||
b3RowValueList* vs2 = rows + i;
|
||||
|
||||
B3_ASSERT(vs2->count == 0);
|
||||
|
||||
for (b3RowValue* v1 = vs1->head; v1; v1 = v1->next)
|
||||
{
|
||||
b3RowValue* v2 = (b3RowValue*)b3Alloc(sizeof(b3RowValue));
|
||||
|
||||
v2->column = v1->column;
|
||||
v2->value = v1->value;
|
||||
|
||||
vs2->PushFront(v2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
inline const b3Mat33& b3SparseSymMat33::operator()(u32 i, u32 j) const
|
||||
{
|
||||
B3_ASSERT(i < rowCount);
|
||||
B3_ASSERT(j < rowCount);
|
||||
|
||||
if (i > j)
|
||||
{
|
||||
b3Swap(i, j);
|
||||
}
|
||||
|
||||
b3RowValueList* vs = rows + i;
|
||||
for (b3RowValue* v = vs->head; v; v = v->next)
|
||||
{
|
||||
if (v->column == j)
|
||||
{
|
||||
return v->value;
|
||||
}
|
||||
}
|
||||
|
||||
return b3Mat33_zero;
|
||||
}
|
||||
|
||||
inline b3Mat33& b3SparseSymMat33::operator()(u32 i, u32 j)
|
||||
{
|
||||
B3_ASSERT(i < rowCount);
|
||||
B3_ASSERT(j < rowCount);
|
||||
|
||||
if (i > j)
|
||||
{
|
||||
b3Swap(i, j);
|
||||
}
|
||||
|
||||
b3RowValueList* vs = rows + i;
|
||||
for (b3RowValue* v = vs->head; v; v = v->next)
|
||||
{
|
||||
if (v->column == j)
|
||||
{
|
||||
return v->value;
|
||||
}
|
||||
}
|
||||
|
||||
b3RowValue* v = (b3RowValue*)b3Alloc(sizeof(b3RowValue));
|
||||
v->column = j;
|
||||
v->value.SetZero();
|
||||
|
||||
vs->PushFront(v);
|
||||
|
||||
return v->value;
|
||||
}
|
||||
|
||||
inline void b3SparseSymMat33::operator+=(const b3SparseSymMat33& m)
|
||||
{
|
||||
B3_ASSERT(rowCount == m.rowCount);
|
||||
|
||||
for (u32 i = 0; i < m.rowCount; ++i)
|
||||
{
|
||||
b3RowValueList* mvs = m.rows + i;
|
||||
|
||||
for (b3RowValue* v = mvs->head; v; v = v->next)
|
||||
{
|
||||
u32 j = v->column;
|
||||
|
||||
(*this)(i, j) += v->value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
inline void b3SparseSymMat33::operator-=(const b3SparseSymMat33& m)
|
||||
{
|
||||
B3_ASSERT(rowCount == m.rowCount);
|
||||
|
||||
for (u32 i = 0; i < m.rowCount; ++i)
|
||||
{
|
||||
b3RowValueList* mvs = m.rows + i;
|
||||
|
||||
for (b3RowValue* v = mvs->head; v; v = v->next)
|
||||
{
|
||||
u32 j = v->column;
|
||||
|
||||
(*this)(i, j) -= v->value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
inline void b3Add(b3SparseSymMat33& out, const b3SparseSymMat33& a, const b3SparseSymMat33& b)
|
||||
{
|
||||
out = a;
|
||||
out += b;
|
||||
}
|
||||
|
||||
inline void b3Sub(b3SparseSymMat33& out, const b3SparseSymMat33& a, const b3SparseSymMat33& b)
|
||||
{
|
||||
out = a;
|
||||
out -= b;
|
||||
}
|
||||
|
||||
inline void b3Mul(b3DenseVec3& out, const b3SparseSymMat33& A, const b3DenseVec3& v)
|
||||
{
|
||||
B3_ASSERT(A.rowCount == out.n);
|
||||
|
||||
out.SetZero();
|
||||
|
||||
for (u32 i = 0; i < A.rowCount; ++i)
|
||||
{
|
||||
b3RowValueList* vs = A.rows + i;
|
||||
|
||||
for (b3RowValue* vA = vs->head; vA; vA = vA->next)
|
||||
{
|
||||
u32 j = vA->column;
|
||||
b3Mat33 a = vA->value;
|
||||
|
||||
out[i] += a * v[j];
|
||||
|
||||
if (i != j)
|
||||
{
|
||||
// a_ij == a_ji
|
||||
out[j] += a * v[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
inline void b3Mul(b3SparseSymMat33& out, float32 s, const b3SparseSymMat33& B)
|
||||
{
|
||||
B3_ASSERT(out.rowCount == B.rowCount);
|
||||
|
||||
if (s == 0.0f)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
out = B;
|
||||
|
||||
for (u32 i = 0; i < out.rowCount; ++i)
|
||||
{
|
||||
b3RowValueList* vs = out.rows + i;
|
||||
for (b3RowValue* v = vs->head; v; v = v->next)
|
||||
{
|
||||
v->value = s * v->value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
inline b3SparseSymMat33 operator+(const b3SparseSymMat33& A, const b3SparseSymMat33& B)
|
||||
{
|
||||
b3SparseSymMat33 result(A.rowCount);
|
||||
b3Add(result, A, B);
|
||||
return result;
|
||||
}
|
||||
|
||||
inline b3SparseSymMat33 operator-(const b3SparseSymMat33& A, const b3SparseSymMat33& B)
|
||||
{
|
||||
b3SparseSymMat33 result(A.rowCount);
|
||||
b3Sub(result, A, B);
|
||||
return result;
|
||||
}
|
||||
|
||||
inline b3SparseSymMat33 operator*(float32 A, const b3SparseSymMat33& B)
|
||||
{
|
||||
b3SparseSymMat33 result(B.rowCount);
|
||||
b3Mul(result, A, B);
|
||||
return result;
|
||||
}
|
||||
|
||||
inline b3DenseVec3 operator*(const b3SparseSymMat33& A, const b3DenseVec3& v)
|
||||
{
|
||||
b3DenseVec3 result(v.n);
|
||||
b3Mul(result, A, v);
|
||||
return result;
|
||||
}
|
||||
|
||||
#endif
|
@ -1,132 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2016-2019 Irlan Robson https://irlanrobson.github.io
|
||||
*
|
||||
* This software is provided 'as-is', without any express or implied
|
||||
* warranty. In no event will the authors be held liable for any damages
|
||||
* arising from the use of this software.
|
||||
* Permission is granted to anyone to use this software for any purpose,
|
||||
* including commercial applications, and to alter it and redistribute it
|
||||
* freely, subject to the following restrictions:
|
||||
* 1. The origin of this software must not be misrepresented; you must not
|
||||
* claim that you wrote the original software. If you use this software
|
||||
* in a product, an acknowledgment in the product documentation would be
|
||||
* appreciated but is not required.
|
||||
* 2. Altered source versions must be plainly marked as such, and must not be
|
||||
* misrepresented as being the original software.
|
||||
* 3. This notice may not be removed or altered from any source distribution.
|
||||
*/
|
||||
|
||||
#ifndef B3_SPARSE_SYM_MAT_33_VIEW_H
|
||||
#define B3_SPARSE_SYM_MAT_33_VIEW_H
|
||||
|
||||
#include <bounce/sparse/sparse_mat33_view.h>
|
||||
#include <bounce/sparse/sparse_sym_mat33.h>
|
||||
|
||||
// A read-only sparse symmetric matrix.
|
||||
struct b3SparseSymMat33View
|
||||
{
|
||||
//
|
||||
b3SparseSymMat33View(const b3SparseSymMat33& _m);
|
||||
|
||||
//
|
||||
~b3SparseSymMat33View();
|
||||
|
||||
//
|
||||
const b3Mat33& operator()(u32 i, u32 j) const;
|
||||
|
||||
u32 rowCount;
|
||||
b3RowValueArray* rows;
|
||||
};
|
||||
|
||||
inline b3SparseSymMat33View::b3SparseSymMat33View(const b3SparseSymMat33& _m)
|
||||
{
|
||||
rowCount = _m.rowCount;
|
||||
rows = (b3RowValueArray*)b3Alloc(rowCount * sizeof(b3RowValueArray));
|
||||
for (u32 i = 0; i < _m.rowCount; ++i)
|
||||
{
|
||||
b3RowValueList* rowList = _m.rows + i;
|
||||
b3RowValueArray* rowArray = rows + i;
|
||||
|
||||
rowArray->count = rowList->count;
|
||||
rowArray->values = (b3ArrayRowValue*)b3Alloc(rowArray->count * sizeof(b3ArrayRowValue));
|
||||
|
||||
u32 valueIndex = 0;
|
||||
for (b3RowValue* v = rowList->head; v; v = v->next)
|
||||
{
|
||||
rowArray->values[valueIndex].column = v->column;
|
||||
rowArray->values[valueIndex].value = v->value;
|
||||
++valueIndex;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
inline b3SparseSymMat33View::~b3SparseSymMat33View()
|
||||
{
|
||||
for (u32 i = 0; i < rowCount; ++i)
|
||||
{
|
||||
b3RowValueArray* rowArray = rows + i;
|
||||
b3Free(rowArray->values);
|
||||
}
|
||||
b3Free(rows);
|
||||
}
|
||||
|
||||
inline const b3Mat33& b3SparseSymMat33View::operator()(u32 i, u32 j) const
|
||||
{
|
||||
B3_ASSERT(i < rowCount);
|
||||
B3_ASSERT(j < rowCount);
|
||||
|
||||
if (i > j)
|
||||
{
|
||||
b3Swap(i, j);
|
||||
}
|
||||
|
||||
b3RowValueArray* vs = rows + i;
|
||||
|
||||
for (u32 c = 0; c < vs->count; ++c)
|
||||
{
|
||||
b3ArrayRowValue* rv = vs->values + c;
|
||||
|
||||
if (rv->column == j)
|
||||
{
|
||||
return rv->value;
|
||||
}
|
||||
}
|
||||
|
||||
return b3Mat33_zero;
|
||||
}
|
||||
|
||||
inline void b3Mul(b3DenseVec3& out, const b3SparseSymMat33View& A, const b3DenseVec3& v)
|
||||
{
|
||||
B3_ASSERT(A.rowCount == out.n);
|
||||
|
||||
out.SetZero();
|
||||
|
||||
for (u32 i = 0; i < A.rowCount; ++i)
|
||||
{
|
||||
b3RowValueArray* rowArray = A.rows + i;
|
||||
|
||||
for (u32 c = 0; c < rowArray->count; ++c)
|
||||
{
|
||||
b3ArrayRowValue* rv = rowArray->values + c;
|
||||
|
||||
u32 j = rv->column;
|
||||
b3Mat33 a = rv->value;
|
||||
|
||||
out[i] += a * v[j];
|
||||
|
||||
if (i != j)
|
||||
{
|
||||
out[j] += a * v[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
inline b3DenseVec3 operator*(const b3SparseSymMat33View& A, const b3DenseVec3& v)
|
||||
{
|
||||
b3DenseVec3 result(v.n);
|
||||
b3Mul(result, A, v);
|
||||
return result;
|
||||
}
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user