mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 15:26:12 +00:00
12 lines
187 B
JavaScript
12 lines
187 B
JavaScript
/**
|
|
* This is graph model used for hit test and draw.
|
|
*
|
|
*/
|
|
|
|
const defaultVertexDiameter = 30;
|
|
|
|
function VertexModel()
|
|
{
|
|
this.diameter = globalApplication.GetDefaultVertexSize();
|
|
}
|