Name

loadShape()

Examples
size(100, 100)
# The file "apple.svg" must be in the data folder
# of the current sketch to load successfully
s = loadShape("apple.svg")
shape(s, 10, 10, 80, 80)
Description Loads geometry into a variable of type PShape. SVG and OBJ files may be loaded. To load correctly, the file must be located in the data directory of the current sketch. In most cases, loadShape() should be used inside setup() because loading shapes inside draw() will reduce the speed of a sketch.

Alternatively, the file maybe be loaded from anywhere on the local computer using an absolute path (something that starts with / on Unix and Linux, or a drive letter on Windows), or the filename parameter can be a URL for a file found on a network.

If the file is not available or an error occurs, null will be returned and an error message will be printed to the console. The error message does not halt the program, however the null value may cause a NullPointerException if your code does not check whether the value returned is null.
Syntax
loadShape(filename)
loadShape(filename, options)
Parameters
filenameString: name of file to load, can be .svg or .obj
Related PShape
createShape()

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.