|
@@ -1,5 +1,5 @@
|
1
|
1
|
/*
|
2
|
|
- vector_3.cpp - Vector library for bed leveling
|
|
2
|
+ vector_3.cpp - Vector library for bed compensation
|
3
|
3
|
Copyright (c) 2012 Lars Brubaker. All right reserved.
|
4
|
4
|
|
5
|
5
|
This library is free software; you can redistribute it and/or
|
|
@@ -19,7 +19,7 @@
|
19
|
19
|
#include <math.h>
|
20
|
20
|
#include "Marlin.h"
|
21
|
21
|
|
22
|
|
-#ifdef ENABLE_AUTO_BED_LEVELING
|
|
22
|
+#ifdef ENABLE_AUTO_BED_COMPENSATION
|
23
|
23
|
#include "vector_3.h"
|
24
|
24
|
|
25
|
25
|
vector_3::vector_3() : x(0), y(0), z(0) { }
|
|
@@ -163,5 +163,5 @@ void matrix_3x3::debug(char* title)
|
163
|
163
|
}
|
164
|
164
|
}
|
165
|
165
|
|
166
|
|
-#endif // #ifdef ENABLE_AUTO_BED_LEVELING
|
|
166
|
+#endif // #ifdef ENABLE_AUTO_BED_COMPENSATION
|
167
|
167
|
|