Example #1
0
        public Punto Scala(int sx, int sy)
        {
            Punto z = new Punto(this.X * sx, this.Y * sy);

            return(z);
        }
Example #2
0
        public Punto Trasla(int tx, int ty)
        {
            Punto z = new Punto(this.X + tx, this.Y + ty);

            return(z);
        }