summaryrefslogtreecommitdiff
path: root/testdata/scad/features/text-search-test.scad
diff options
context:
space:
mode:
authorMarius Kintel <marius@kintel.net>2012-02-18 11:51:51 (GMT)
committerMarius Kintel <marius@kintel.net>2012-02-18 11:51:51 (GMT)
commit4f8c89ecf0986034c8dccbac0130619a3d502c1a (patch)
treef8bb554a3d8f272d17bd7c57eca627ba33ac92bb /testdata/scad/features/text-search-test.scad
parent4b54876b7a1d54bb7439a9ef8324a74d1a63acb8 (diff)
parent2e7a27f64416b3bb5b8e0a5d2969292cbacde7b6 (diff)
Merge branch 'search_function' of https://github.com/clothbot/openscad into clothbot-search_function
Diffstat (limited to 'testdata/scad/features/text-search-test.scad')
-rw-r--r--testdata/scad/features/text-search-test.scad29
1 files changed, 29 insertions, 0 deletions
diff --git a/testdata/scad/features/text-search-test.scad b/testdata/scad/features/text-search-test.scad
new file mode 100644
index 0000000..8b6047f
--- /dev/null
+++ b/testdata/scad/features/text-search-test.scad
@@ -0,0 +1,29 @@
+// fonts test
+
+use <MCAD/fonts.scad>
+
+thisFont=8bit_polyfont();
+thisText="OpenSCAD Rocks!";
+// Find one letter matches from 2nd column (index 1)
+theseIndicies=search(thisText,thisFont[2],1,1);
+// Letter spacing, x direction.
+x_shift=thisFont[0][0];
+y_shift=thisFont[0][1];
+echo(theseIndicies);
+// Simple polygon usage.
+for(i=[0:len(theseIndicies)-1]) translate([i*x_shift-len(theseIndicies)*x_shift/2,0]) {
+ polygon(points=thisFont[2][theseIndicies[i]][6][0],paths=thisFont[2][theseIndicies[i]][6][1]);
+}
+
+theseIndicies2=search("ABC",thisFont[2],1,1);
+// outline_2d() example
+for(i=[0:len(theseIndicies2)-1]) translate([i*x_shift-len(theseIndicies2)*x_shift,-y_shift]) {
+ outline_2d(outline=true,points=thisFont[2][theseIndicies2[i]][6][0],paths=thisFont[2][theseIndicies2[i]][6][1],width=0.25);
+}
+
+theseIndicies3=search("123",thisFont[2],1,1);
+// bold_2d() outline_2d(false) example
+for(i=[0:len(theseIndicies3)-1]) translate([i*x_shift,-2*y_shift]) {
+ bold_2d(bold=true,width=0.25,resolution=8)
+ outline_2d(false,thisFont[2][theseIndicies3[i]][6][0],thisFont[2][theseIndicies3[i]][6][1]);
+} \ No newline at end of file
contact: Jan Huwald // Impressum