Remove undefined function

No change in memory footprint.
This commit is contained in:
Guðni Már Gilbert 2022-01-29 15:01:51 +00:00
parent c705d4aa10
commit 49693a9fb3
1 changed files with 0 additions and 5 deletions

View File

@ -24,11 +24,6 @@ public:
static float get_x(int i) { return float(MESH_MIN_X) + float(MESH_X_DIST) * float(i); }
static float get_y(int i) { return float(MESH_MIN_Y) + float(MESH_Y_DIST) * float(i); }
// Measurement point for the Z probe.
// If use_default=true, then the default positions for a correctly built printer are used.
// Otherwise a correction matrix is pulled from the EEPROM if available.
static void get_meas_xy(int ix, int iy, float &x, float &y, bool use_default);
void set_z(uint8_t ix, uint8_t iy, float z) { z_values[iy][ix] = z; }
int select_x_index(float x) {