This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
38
Wiki
Activity
Browse Source
Remove single-float Vec constructor.
tags/v2.0.0
Andrew Belt
3 years ago
parent
2f391188c3
commit
6c22590439
1 changed files
with
0 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-1
include/math.hpp
+ 0
- 1
include/math.hpp
View File
@@ -194,7 +194,6 @@ struct Vec {
float y = 0.f;
float y = 0.f;
Vec() {}
Vec() {}
Vec(float x) : x(x), y(x) {}
Vec(float x, float y) : x(x), y(y) {}
Vec(float x, float y) : x(x), y(y) {}
float& operator[](int i) {
float& operator[](int i) {
Write
Preview
Loading…
Cancel
Save