Saturday, January 12, 2008
Updates: Versioning Control
Friday, January 11, 2008
Updates: New Website design
Following the MSN meeting on 05 Jan 2008, Lexis and I set to work on getting the new website up.
We have chosen black, dark blue, gold, yellow, white to be the colour scheme, emphasizing more towards the marketing/business, like to be seen as innovators of the market/reflects on our brand identity and make the sale.
The website can be found at https://www.epic4security.no-ip.com/
Technical: 3D Transformation
The transformation performed in the example below simply rotates the cube a specified number of degrees about the x and y axis.
public void createTransformation()
{
/** Create a 3D transformation that will
* rotate the cube a specified number of degrees on the x & y axis
*/
Transform3D transform3D = new Transform3D();
transform3D.rotX(xRotationAngle);
transform3D.rotY(yRotationAngle);
/** Create the transform group node and add the transformation
* to the node. Add the transformation group to the scene graph.
*/
TransformGroup transformGroup = new TransformGroup(transform3D);
sceneGraph.addChild(transformGroup);
/** Add a colored cube to the transform group node. */
transformGroup.addChild(new ColorCube(cubeScale));
}The first three lines of code create a Java3D transformation that will be used to rotate a 3D object about the x-axis and the y-axis. The method used to perform the rotation, rotX() / rotY() accepts a single double precision floating point number that specifies the angle in radians. Adding on, a rotZ() will handle the z-axis.The next two lines creates a transform group node with the specified 3D transformation. Once this group node has been properly initialized, it is added to the scene graph.
The last line of code simply adds the colored cube to the transform group node. The transform group node now has two children: the 3D transformation object and a colored cube.
Updates: New Epic4Security Logo



Updates: Captcha Design v2.0
Thursday, January 10, 2008
Updates: Captcha Design v1.0
Wednesday, January 9, 2008
Technical: Applied Colouring to Text
ColoringAttributes textColor = new ColoringAttributes();
textColor.setColor(1.0f, 0.0f, 0.0f);
textAppear.setColoringAttributes(textColor);
textAppear.setMaterial(new Material());

