VisualPOVRAY.Point2.render C# (CSharp) Méthode

render() public méthode

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