[Deprecation] Not enough warnings for you?
parent
bb192e0710
commit
f6e9c5ebba
|
@ -40,6 +40,7 @@ import java.nio.FloatBuffer;
|
|||
* @author cix_foo <cix_foo@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$ */
|
||||
@Deprecated
|
||||
public abstract class Matrix implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
@ -41,6 +41,7 @@ import com.github.hydos.ginger.engine.math.vectors.Vector2f;
|
|||
* @author cix_foo <cix_foo@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$ */
|
||||
@Deprecated
|
||||
public class Matrix2f extends Matrix implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
@ -41,6 +41,7 @@ import com.github.hydos.ginger.engine.math.vectors.Vector3f;
|
|||
* @author cix_foo <cix_foo@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$ */
|
||||
@Deprecated
|
||||
public class Matrix3f extends Matrix implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
@ -41,6 +41,7 @@ import com.github.hydos.ginger.engine.math.vectors.*;
|
|||
/** Holds a 4x4 float matrix.
|
||||
*
|
||||
* @author foo */
|
||||
@Deprecated
|
||||
public class Matrix4f extends Matrix implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
@ -34,6 +34,7 @@ package com.github.hydos.ginger.engine.math.vectors;
|
|||
import java.nio.FloatBuffer;
|
||||
|
||||
/** @author foo */
|
||||
@Deprecated
|
||||
public interface ReadableVector
|
||||
{
|
||||
/** @return the length of the vector */
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
package com.github.hydos.ginger.engine.math.vectors;
|
||||
|
||||
/** @author foo */
|
||||
@Deprecated
|
||||
public interface ReadableVector2f extends ReadableVector
|
||||
{
|
||||
/** @return x */
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
package com.github.hydos.ginger.engine.math.vectors;
|
||||
|
||||
/** @author foo */
|
||||
@Deprecated
|
||||
public interface ReadableVector3f extends ReadableVector2f
|
||||
{
|
||||
/** @return z */
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
package com.github.hydos.ginger.engine.math.vectors;
|
||||
|
||||
/** @author foo */
|
||||
@Deprecated
|
||||
public interface ReadableVector4f extends ReadableVector3f
|
||||
{
|
||||
/** @return w */
|
||||
|
|
|
@ -39,6 +39,7 @@ import java.nio.FloatBuffer;
|
|||
* @author cix_foo <cix_foo@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$ */
|
||||
@Deprecated
|
||||
public abstract class Vector implements Serializable, ReadableVector
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
@ -39,6 +39,7 @@ import java.nio.FloatBuffer;
|
|||
* @author cix_foo <cix_foo@users.sourceforge.net>
|
||||
* @version $Revision$
|
||||
* $Id$ */
|
||||
@Deprecated
|
||||
public class Vector2f extends Vector implements Serializable, ReadableVector2f, WritableVector2f
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
|
|
@ -36,6 +36,7 @@ package com.github.hydos.ginger.engine.math.vectors;
|
|||
* @author $author$
|
||||
* @version $revision$
|
||||
* $Id$ */
|
||||
@Deprecated
|
||||
public interface WritableVector2f
|
||||
{
|
||||
/** Set the X,Y values
|
||||
|
|
|
@ -36,6 +36,7 @@ package com.github.hydos.ginger.engine.math.vectors;
|
|||
* @author $author$
|
||||
* @version $revision$
|
||||
* $Id$ */
|
||||
@Deprecated
|
||||
public interface WritableVector3f extends WritableVector2f
|
||||
{
|
||||
/** Set the X,Y,Z values
|
||||
|
|
|
@ -36,6 +36,7 @@ package com.github.hydos.ginger.engine.math.vectors;
|
|||
* @author $author$
|
||||
* @version $revision$
|
||||
* $Id$ */
|
||||
@Deprecated
|
||||
public interface WritableVector4f extends WritableVector3f
|
||||
{
|
||||
/** Set the X,Y,Z,W values
|
||||
|
|
Loading…
Reference in New Issue