VisualPOVRAY.AnimatedPoint3.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 + ", " + this.z + ">");
            return l;
        }