Skip to content

Instantly share code, notes, and snippets.

@tri-man
tri-man / gist:3140256
Created July 19, 2012 01:51
C版のコード
struct VECTOR
{
float x;
float y;
float z;
};
VECTOR VSet( float x, float y, float z )
{
VECTOR rtn;
@tri-man
tri-man / gist:3140259
Created July 19, 2012 01:52
D版のコード
module main;
import std.stdio;
struct VECTOR
{
float x, y, z;
}
VECTOR VSet( float x, float y, float z )
{