Package com.aspose.threed
Class IOUtils
- java.lang.Object
-
- com.aspose.threed.IOUtils
-
public class IOUtils extends java.lang.Object
Utilities to write matrix/vector to binary writer
-
-
Constructor Summary
Constructors Constructor Description IOUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
write(com.aspose.threed.BinaryWriter writer, FMatrix4 mat)
Write the matrix to the binary writerstatic void
write(com.aspose.threed.BinaryWriter writer, FVector2 v)
Write the vector to the binary writerstatic void
write(com.aspose.threed.BinaryWriter writer, FVector3 v)
Write the vector to the binary writerstatic void
write(com.aspose.threed.BinaryWriter writer, FVector4 v)
Write the vector to the binary writerstatic void
write(com.aspose.threed.BinaryWriter writer, Matrix4 mat)
Write the matrix to the binary writerstatic void
write(com.aspose.threed.BinaryWriter writer, Vector2 v)
Write the vector to the binary writerstatic void
write(com.aspose.threed.BinaryWriter writer, Vector3 v)
Write the vector to the binary writerstatic void
write(com.aspose.threed.BinaryWriter writer, Vector4 v)
Write the vector to the binary writer
-
-
-
Method Detail
-
write
public static void write(com.aspose.threed.BinaryWriter writer, Matrix4 mat) throws java.io.IOException
Write the matrix to the binary writer- Parameters:
writer
- Target binary writermat
- Matrix to write- Throws:
java.io.IOException
-
write
public static void write(com.aspose.threed.BinaryWriter writer, FMatrix4 mat) throws java.io.IOException
Write the matrix to the binary writer- Parameters:
writer
- Target binary writermat
- Matrix to write- Throws:
java.io.IOException
-
write
public static void write(com.aspose.threed.BinaryWriter writer, FVector2 v) throws java.io.IOException
Write the vector to the binary writer- Parameters:
writer
- Target binary writerv
- Vector to write- Throws:
java.io.IOException
-
write
public static void write(com.aspose.threed.BinaryWriter writer, FVector3 v) throws java.io.IOException
Write the vector to the binary writer- Parameters:
writer
- Target binary writerv
- Vector to write- Throws:
java.io.IOException
-
write
public static void write(com.aspose.threed.BinaryWriter writer, FVector4 v) throws java.io.IOException
Write the vector to the binary writer- Parameters:
writer
- Target binary writerv
- Vector to write- Throws:
java.io.IOException
-
write
public static void write(com.aspose.threed.BinaryWriter writer, Vector2 v) throws java.io.IOException
Write the vector to the binary writer- Parameters:
writer
- Target binary writerv
- Vector to write- Throws:
java.io.IOException
-
write
public static void write(com.aspose.threed.BinaryWriter writer, Vector3 v) throws java.io.IOException
Write the vector to the binary writer- Parameters:
writer
- Target binary writerv
- Vector to write- Throws:
java.io.IOException
-
write
public static void write(com.aspose.threed.BinaryWriter writer, Vector4 v) throws java.io.IOException
Write the vector to the binary writer- Parameters:
writer
- Target binary writerv
- Vector to write- Throws:
java.io.IOException
-
-