added comments

This commit is contained in:
walterhiggins 2012-12-27 13:11:26 +00:00
parent a1f243cef0
commit d71977677f

View file

@ -14,20 +14,21 @@ load($SCRIPTPATH + "/drone.js"); // assumes cottage.js and drone.js are in same
// //
// /js cottage(drone); // /js cottage(drone);
// //
var cottage = function(drone){ var cottage = function(drone)
{
if (typeof drone == "undefined"){ if (typeof drone == "undefined"){
drone = new Drone(); drone = new Drone();
} }
drone drone
.box0(48,7,6,2) // 4 walls .box0(48,7,6,2) // a 4-walled structure 7 wide by 6 deep by 2 high using mossy-stone (48).
.right(3).door() // door front and center .right(3).door() // door front and center
.up(1).left(2).box(102) // windows to left and right .up(1).left(2).box(102) // windows to left and right
.right(4).box(102) .right(4).box(102)
.left(5).up().prism0(53,7,6); .left(5).up().prism0(53,7,6); // add a gable roof
// //
// put up a sign near door. // put up a sign near door.
// //
drone.down().right(4).sign(["Home","Sweet","Home"],68); drone.down().right(4).sign(["Home","Sweet","Home"],68);
return drone.down().left(4); return drone.down().left(4); // return drone to original position
}; };