graphonline/script/VertexModel.js
2021-04-17 20:27:04 +02:00

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();
}