-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.json
32 lines (32 loc) · 841 Bytes
/
library.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "stevesch-MathVec",
"version": "0.2.0",
"keywords": "vector, matrix, quaternion, linear algebra, transform, cross, dot, slerp, invert, inverse, lerp, 3D, geometry, physics, math",
"description": "C++ vector (2-, 3-, and 4-element), matrix (4x4), and quaternion classes with common functions for 3D rendering and 3D geometry.",
"repository":
{
"type": "git",
"url": "https://github.com/stevesch/stevesch-MathVec"
},
"exclude": "tests",
"frameworks": "arduino",
"platforms": "*",
"authors":
{
"name": "Stephen Schlueter",
"url": "https://github.com/stevesch",
"maintainer": true
},
"examples": [
{
"name": "Minimal",
"base": "examples/minimal",
"files": [
"minimal.ino"
]
}
],
"dependencies": [
"stevesch/stevesch-MathBase@^0.2.0"
]
}