Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Want <cwant@ualberta.ca>2004-03-30 07:10:34 +0400
committerChris Want <cwant@ualberta.ca>2004-03-30 07:10:34 +0400
commitc2a691a94eed48bd310c110a96729eb8aeb5bf25 (patch)
treec12a2a2a165cc8d4db02feeeea585131e129bee6 /source/blender/blenkernel/BKE_exotic.h
parentfc275fd72fc856fb194c54789b164ceb9d1201e6 (diff)
Support for the STL (stereolithography) file format. Reads the ASCII and
binary subformats, and writes the binary subformat. Read is done with usual F1, write is done in the menu 'File->Export Selected->STL'. Writes meshes only, writing the 'displistmesh' if subsurf is on. The 'magic' to determine whether it is reading the binary or ASCII subformat could use a little work, but makes the correct choice most of the time.
Diffstat (limited to 'source/blender/blenkernel/BKE_exotic.h')
-rw-r--r--source/blender/blenkernel/BKE_exotic.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_exotic.h b/source/blender/blenkernel/BKE_exotic.h
index a17e9954bc1..e83eabfafaf 100644
--- a/source/blender/blenkernel/BKE_exotic.h
+++ b/source/blender/blenkernel/BKE_exotic.h
@@ -50,6 +50,7 @@ int BKE_read_exotic(char *name);
void write_dxf(char *str);
void write_vrml(char *str);
void write_videoscape(char *str);
+void write_stl(char *str);
#endif