﻿function Constraint(element, distance)
{
    this.element = element;
    this.distance = distance;
}

Constraint.prototype = 
{

}


