VisualPOVRAY.Point2.render C# (CSharp) Method

render() public method

public render ( ) : List
return List
        public List<string> render()
        {
            List<string> l = new List<string>();
            l.Add("<" + this.x + ", " + this.y + ">");
            return l;
        }