blob: b61a12920a897882eb9a7df1db63e85a9b554c87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package org.reprap.geometry;
import org.reprap.geometry.Producer;
import org.reprap.gui.RepRapBuild;
import org.reprap.machines.NullCartesianMachine;
/**
* A specialisation of Producer that doesn't preview anything
* and always uses the virtual printer. This is useful to
* determine in advance the resource requirements (time and materials)
* to produce an assembly.
*/
public class EstimationProducer extends Producer {
public EstimationProducer(RepRapBuild builder) throws Exception {
super(null, builder);
reprap = new NullCartesianMachine(null);
}
}
|