SquirrelJME/SquirrelJME

View on GitHub
modules/m3g/src/main/java/javax/microedition/m3g/Transformable.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package javax.microedition.m3g;


import cc.squirreljme.runtime.cldc.annotation.Api;
import cc.squirreljme.runtime.cldc.debug.Debugging;

@Api
public abstract class Transformable
    extends Object3D
{
    Transformable()
    {
        throw Debugging.todo();
    }
    
    @Api
    public void getCompositeTransform(Transform __a)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void getOrientation(float[] __a)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void getScale(float[] __a)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void getTransform(Transform __a)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void getTranslation(float[] __a)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void postRotate(float __a, float __b, float __c, float __d)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void preRotate(float __a, float __b, float __c, float __d)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void scale(float __a, float __b, float __c)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void setOrientation(float __a, float __b, float __c, float __d)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void setScale(float __a, float __b, float __c)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void setTransform(Transform __a)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void setTranslation(float __a, float __b, float __c)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void translate(float __a, float __b, float __c)
    {
        throw Debugging.todo();
    }
}