Examples of copyFrom()


Examples of stallone.api.doubles.IDoubleArray.copyFrom()

    @Override
    public IDoubleArray copy()
    {
        IDoubleArray res = doublesNew.matrix(rows,cols);
        res.copyFrom(this);
        return(res);
    }

    @Override
    public boolean isSparse()
View Full Code Here

Examples of stallone.complex.DenseComplexArray.copyFrom()

        @Override
        public IComplexArray copy()
        {
            IComplexArray res = new DenseComplexArray(rows,cols);
            res.copyFrom(this);
            return(res);
        }

        @Override
        public IDoubleArray viewReal()
View Full Code Here

Examples of tiled.core.TileLayer.copyFrom()

      // STAMP
      if (mouseButton == 3 && layer instanceof TileLayer) {
        // Right mouse button dragged: create and set custom brush
        TileLayer brushLayer = new TileLayer(bounds);
        brushLayer.copyFrom(getCurrentLayer());
        brushLayer.setOffset(tile.x - (int) bounds.width / 2, tile.y
            - (int) bounds.height / 2);

        // Do a quick check to make sure the selection is not empty
        if (brushLayer.isEmpty()) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.