mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-03 00:06:40 +00:00
11 lines
115 B
JavaScript
11 lines
115 B
JavaScript
/**
|
|
* This is graph model used for hit test and draw.
|
|
*
|
|
*/
|
|
|
|
|
|
function VertexModel()
|
|
{
|
|
this.diameter = 30;
|
|
}
|