PeriDyno 1.0.0
Loading...
Searching...
No Matches
VkConstant.inl
Go to the documentation of this file.
1#include "VkConstant.h"
2
3namespace dyno {
4
5 template<typename T>
11 template<typename T>
13 {
14 mVal = val;
15 }
16
17 template<typename T>
22
23 template<typename T>
24 void VkConstant<T>::setValue(const T val)
25 {
26 mVal = val;
27 }
28
29 template<typename T>
31 {
32 return mVal;
33 }
34
35 template<typename T>
40
41
42}
VariableType type() override
void setValue(const T val)
#define T(t)
This is an implementation of AdditiveCCD based on peridyno.
Definition Array.h:25
VariableType
Definition VkVariable.h:14
@ Constant
Constant variable.
Definition VkVariable.h:17