Blender  V3.3
eigenvalues.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later
2  * Copyright 2015 Blender Foundation. All rights reserved. */
3 
8 #ifndef __EIGEN3_EIGENVALUES_C_API_H__
9 #define __EIGEN3_EIGENVALUES_C_API_H__
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 bool EIG_self_adjoint_eigen_solve(const int size,
16  const float *matrix,
17  float *r_eigen_values,
18  float *r_eigen_vectors);
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif /* __EIGEN3_EIGENVALUES_C_API_H__ */
static DBVT_INLINE btScalar size(const btDbvtVolume &a)
Definition: btDbvt.cpp:52
bool EIG_self_adjoint_eigen_solve(const int size, const float *matrix, float *r_eigen_values, float *r_eigen_vectors)
Definition: eigenvalues.cc:25