This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // --- HILFSFUNKTION (Ganz oben) --- | |
| module rounded_cube(size, r) { | |
| translate([r, r, 0]) | |
| minkowski() { | |
| cube([size[0]-2*r, size[1]-2*r, size[2]/2]); | |
| cylinder(r=r, h=size[2]/2); | |
| } | |
| } | |
| // --- PARAMETER --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="description" content=""> | |
| <meta name="author" content=""> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| </head> | |
| <body><h1>MPRPA-138 Backend - Serviceseiten pflegen</h1> | |
| <p> <br /><strong>Als Redakteur kann ich die Inhalte zu folgenden Serviceseiten pflegen:</strong></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var win = Ti.currentWindow; | |
| var imageCollection = [ | |
| 'http://example.com/images/1.jpg', | |
| 'http://example.com/images/2.jpg', | |
| 'http://example.com/images/3.jpg', | |
| 'http://example.com/images/4.jpg', | |
| 'http://example.com/images/5.jpg', | |
| 'http://example.com/images/6.jpg' | |
| ]; | |
| var scrollGallery = Ti.UI.createScrollableView({ |