import Graph import math PluginName = "atan2 function" PluginVersion = "1.0" PluginDescription = "This plugin defines the following functions:\natan2(y,x)" Graph.CustomFunctions ["atan2"] = lambda y,x: math.atan2(y, x)