[SML Overview]

class SMLLine

#include "smlmath.h"

SMLLine class defines a line in 3D space that extends from a start point to an end point.


Public Data

SMLVec3f start;

Begining of the line.

SMLVec3f end;

End of the line.

[top]


SMLLIBENTRY SMLLine(const SMLVec3f& start, const SMLVec3f& end);

Discussion

SMLLine object constructor.

Parameters

start - begining of the line.

end - end of the line

[top]


SMLLIBENTRY SMLLine();

Discussion

Default SMLLine object constructor.

Parameters

No.

[top]