mirror of
https://github.com/UnickSoft/graphonline.git
synced 2026-02-16 10:40:57 +00:00
12 lines
188 B
JavaScript
Executable File
12 lines
188 B
JavaScript
Executable File
/**
|
|
* This is graph model used for hit test and draw.
|
|
*
|
|
*/
|
|
|
|
const defaultVertexDiameter = 30;
|
|
|
|
function VertexModel()
|
|
{
|
|
this.diameter = globalApplication.GetDefaultVertexSize();
|
|
}
|