update readme
This commit is contained in:
parent
c908c7b397
commit
0a239578a1
3 changed files with 20 additions and 1 deletions
BIN
.docs/Gallery/Sketch3D.gif
Normal file
BIN
.docs/Gallery/Sketch3D.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 MiB |
16
.docs/Gallery/oscript.txt
Normal file
16
.docs/Gallery/oscript.txt
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
method myLogFunction(value) {
|
||||
print value;
|
||||
}
|
||||
|
||||
myLogFunction("hello");
|
||||
|
||||
var i = 10;
|
||||
|
||||
if (i == 10) {
|
||||
while (i > 0) {
|
||||
print i;
|
||||
i = i - 1;
|
||||
}
|
||||
} else {
|
||||
print "still doin' heavy calculations...";
|
||||
}
|
||||
|
|
@ -34,3 +34,6 @@ Simple Ray-Tracer.
|
|||
|
||||

|
||||
Oscript.
|
||||
|
||||
<img src=".docs/Gallery/Sketch3D.gif" alt="Sketch3d" style="zoom:150%;" />
|
||||
Sketch3D.
|
||||
Loading…
Add table
Add a link
Reference in a new issue