Initializes a new OBJ Object with the given filename.
(PApplet parent, String filename)
| 24 | * Initializes a new OBJ Object with the given filename. |
| 25 | */ |
| 26 | public PShapeOBJ(PApplet parent, String filename) { |
| 27 | this(parent, parent.createReader(filename), getBasePath(parent, filename)); |
| 28 | } |
| 29 | |
| 30 | public PShapeOBJ(PApplet parent, BufferedReader reader) { |
| 31 | this(parent, reader, ""); |
nothing calls this directly
no test coverage detected