Package de.cit_ec.helmerttransformation

Examples of de.cit_ec.helmerttransformation.Transformer


    public ReceiverCalculatorSender(String configurationfile, String pub, String sub) {

        this.pubname = pub;
        this.subname = sub;
        this.trans = new Transformer(configurationfile);
        this.scalar = trans.getScaleFactor();
        initCommunication();
        transformpointasarray[0] = 0.0f;
        transformpointasarray[1] = 0.0f;
        transformpointasarray[2] = 0.0f;
View Full Code Here


        transformedpoint.w = 0.0f;

    }

    public ReceiverCalculatorSender(String configurationfile) {
        this.trans = new Transformer(configurationfile);
        this.scalar = trans.getScaleFactor();
//        transformpointasarray[0] = 0.0f;
//        transformpointasarray[1] = 0.0f;
//        transformpointasarray[2] = 0.0f;
//        currentpoint.x = 420.0f;
View Full Code Here

//        currentpoint.w = 1.0f;
    }

    // ONLY for hardcoded tests
    public ReceiverCalculatorSender(String configurationfile, String hard) {
        this.trans = new Transformer(configurationfile);
        this.scalar = trans.getScaleFactor();
//        transformpointasarray[0] = 0.0f;
//        transformpointasarray[1] = 0.0f;
//        transformpointasarray[2] = 0.0f;
        //x="420.0" y="66.0" z="477.0"
View Full Code Here

TOP

Related Classes of de.cit_ec.helmerttransformation.Transformer

Copyright © 2018 www.massapicom. 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.