function Stroke(rune)
{
  Module.call(this,rune);
  
  this.parameters = [Any];
  
  // Create a stroke
  
  this.positions = null;
  
  this.new_stroke = function()
  {
    this.positions = [];
  }
  
  this.append_stroke = function(p)
  {
    this.positions.push(p);
  }
  
  this.save_stroke = function()
  {
    s = "_ ";
    for (i = 0; i < this.positions.length; i++) {
      s += this.positions[i].render()+" ";
    }
    this.positions = null;
    ronin.history.add(s);
  }
  
  // Module
  
  this.passive = function(cmd)
  {
  }
  
  this.active = function(cmd)
  {
    var prev = null
    for (i = 1; i < cmd.content.length; i++) {
      var p = new Position(cmd.content[i]);
      if(prev){
        this.draw(prev,p);
      }
      prev = p;
    }
  }
  
  this.draw = function(pos1,pos2)
  {
    ronin.canvas.context().beginPath();
    ronin.canvas.context().moveTo(pos1.x,pos1.y);
    ronin.canvas.context().lineTo(pos2.x,pos2.y);
    ronin.canvas.context().lineCap="round";
    ronin.canvas.context().lineWidth = 1;
    ronin.canvas.context().strokeStyle = new Color("#ff0000").rgba();
    ronin.canvas.context().stroke();
    ronin.canvas.context().closePath();
  }
  
}