Skip to content

Commit 87f1e21

Browse files
committed
add warning notes to two classes
1 parent 014c589 commit 87f1e21

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

core/src/processing/core/PShapeOBJ.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
import java.util.Hashtable;
66

77
/**
8+
* This class is not part of the Processing API and should not be used
9+
* directly. Instead, use loadShape() and methods like it, which will make
10+
* use of this class. Using this class directly will cause your code to break
11+
* when combined with future versions of Processing.
12+
* <p>
813
* OBJ loading implemented using code from Saito's OBJLoader library:
914
* http://code.google.com/p/saitoobjloader/
1015
* and OBJReader from Ahmet Kizilay

core/src/processing/core/PShapeSVG.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@
3939

4040

4141
/**
42+
* This class is not part of the Processing API and should not be used
43+
* directly. Instead, use loadShape() and methods like it, which will make
44+
* use of this class. Using this class directly will cause your code to break
45+
* when combined with future versions of Processing.
46+
* <p>
4247
* SVG stands for Scalable Vector Graphics, a portable graphics format. It is
4348
* a vector format so it allows for infinite resolution and relatively small
4449
* file sizes. Most modern media software can view SVG files, including Adobe

0 commit comments

Comments
 (0)