blob: 0b301096ecf095ef736e929090c74ca1d49cdc0f (
plain)
1
2
3
4
5
6
7
|
package org.reprap;
public interface PolarPrinter extends Printer {
public void printPolarSegment(double startTheta, double startX,
double startZ, double endTheta, double endX, double endZ);
}
|