Oleg Sh 43a4b44a22 Change script location.
Split js code.
Added cache and changed loading mechanism for js sources.
2023-11-06 19:16:50 +02:00

12 lines
187 B
JavaScript

/**
* This is graph model used for hit test and draw.
*
*/
const defaultVertexDiameter = 30;
function VertexModel()
{
this.diameter = globalApplication.GetDefaultVertexSize();
}