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