Projekt

Obecné

Profil

Stáhnout (249 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
/**
2
 * Represents one mark.
3
 * @param symbol symbol with char and color
4
 * @param id ID of mark
5
 * @param selector selector of vertex
6
*/
7
function Mark(symbol, id, selector) {
8
	this.symbol = symbol;
9
	this.id = id;
10
	this.$vertexSelector = selector;
11
}
(11-11/19)