Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/tabasics.py
Commit message (Expand)AuthorAgeFilesLines
* use the prim_define_stack primitive also for the 'start' blockMarion2013-08-161-1/+5
* add Primitives for all 'hat' and 'stack' blocks (not yet exportable)Marion2013-08-161-9/+18
* add Primitives for all 'box' and 'store-in' blocks (not yet exportable)Marion2013-08-151-14/+10
* add Primitive for the 'plus' blockMarion2013-08-151-3/+4
* add Primitive for the 'minus' blockMarion2013-08-151-3/+11
* add Primitive for the 'product' block (multiplication)Marion2013-08-151-4/+11
* add Primitive for 'division' blockMarion2013-08-151-5/+15
* add Primitive for the 'mod' blockMarion2013-08-151-3/+12
* add Primitve for the 'square root' blockMarion2013-08-121-16/+26
* add Primitive for the 'identity' blockMarion2013-08-121-7/+1
* remove unused primitive methods in tabasicsMarion2013-08-121-45/+0
* add Primitives for the 'less than' and 'greater than' blocksMarion2013-08-121-8/+8
* add Primitive for the '==' ('equals') blockMarion2013-08-111-4/+7
* add Primitives for the color blocksMarion2013-08-111-1/+2
* Merge branch 'color-class' into primitive-classMarion2013-08-101-18/+11
|\
| * introduce a Color type for the pen color in block programsMarion2013-08-091-18/+11
| * Merge commit 'refs/merge-requests/6' of git://git.sugarlabs.org/turtleart/mai...Walter Bender2013-08-091-2/+2
| |\
* | | rename the LogoCode's loop function to prim_loopMarion2013-08-091-2/+2
* | | add Primitive for the 'hspace' (deprecated) and 'vspace' blocksMarion2013-08-091-2/+4
* | | Merge branch 'update-heading-label' into primitive-classMarion2013-08-091-2/+2
|\ \ \ | | |/ | |/|
| * | fix updating the heading label in snail execution modeMarion2013-08-091-2/+2
* | | add Primitives for the 'if-then' and 'if-then-else' blocksMarion2013-08-091-21/+3
* | | add Primitives for the 'and' and 'or' blocksMarion2013-08-071-4/+2
* | | add a Primitive for the 'not' blockMarion2013-08-071-1/+1
* | | add Primitives for the 'pen state', 'while', and 'until' blocksMarion2013-08-071-1/+1
* | | introduce the call_me attr to Primitives, it's parallel to export_meMarion2013-08-041-13/+15
* | | add Primitives for the 'xcor' and 'ycor' blocksMarion2013-08-031-5/+11
* | | replace float.__neg__ with Primitive.minus, which can also be used for 2 argsMarion2013-08-031-2/+2
* | | add Primitives for the 'start fill' and 'end fill' blocksMarion2013-08-031-2/+2
* | | add Primitives for the 'set pen size' block and the 'pen size' value blockMarion2013-08-031-3/+3
* | | add Primitives for the 'pen up' and 'pen down' commandsMarion2013-08-031-4/+2
* | | add Primitive for the 'heading' value blockMarion2013-08-031-4/+1
* | | add Primitives for the 'color', 'shade', and 'gray' value blocksMarion2013-08-031-10/+3
* | | add Primitives for the 'set shade' and 'set gray' blockMarion2013-08-031-4/+4
* | | add Primitive for the 'set color' blockMarion2013-08-031-5/+4
* | | add Primitive object for the 'fillscreen' blockMarion2013-08-031-2/+2
* | | add Primitive object for 'clean' blockMarion2013-07-311-2/+5
* | | treat float.__neg__ as the minus sign when converting it to an ASTMarion2013-07-291-1/+2
* | | Primitive for the 'set heading' block; fix constant arguments to PrimitivesMarion2013-07-291-2/+9
* | | remove unused primitive methods from tabasicsMarion2013-07-261-19/+0
* | | Primitive for 'arc' blockMarion2013-07-261-2/+7
* | | make 'forever' block exportableMarion2013-07-261-1/+1
* | | fix 'forever' blockMarion2013-07-261-1/+1
* | | introduce constant arguments to the Primitive classMarion2013-07-251-1/+1
* | | Primitive object for 'forever' blockMarion2013-07-241-3/+6
* | | define multiply-used Primitives only onceMarion2013-07-231-14/+15
* | | define some Primitives as not exportable when they are createdMarion2013-07-231-8/+15
* | | Merge branch 'master' of git://git.sugarlabs.org/turtleart/mainline into prim...Marion2013-07-201-0/+10
|\ \ \ | | |/ | |/|
| * | added pen state booleanWalter Bender2013-07-171-0/+10
| |/
* | fix previous commitMarion2013-07-181-4/+3