imiger-fork/sources/WebContent/old/js/mark.js @ 8fbb337d
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 |
}
|