VR-Forces Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
vrfLine.h
Go to the documentation of this file.
1 
9 
10 #pragma once
11 
12 #include "geometry/point.h"
13 
14 namespace makVrf
15 {
16  class DtLine
17  {
18  public:
20  DtLine() {};
21  DtLine(const DtString& name, const DtPoint& p1, const DtPoint& p2,
22  unsigned char red, unsigned char green, unsigned char blue):
23  myName(name),
24  myPt1(p1),
25  myPt2(p2),
26  myRed(red),
27  myGreen(green),
28  myBlue(blue)
29  {
30  };
31  virtual ~DtLine() {};
32 
36  unsigned char myRed;
37  unsigned char myGreen;
38  unsigned char myBlue;
39  };
40 }
DtPoint myPt1
Definition: vrfLine.h:34
DtLine()
CTOR/DTOR.
Definition: vrfLine.h:20
virtual ~DtLine()
Definition: vrfLine.h:31
unsigned char myGreen
Definition: vrfLine.h:37
DtLine(const DtString &name, const DtPoint &p1, const DtPoint &p2, unsigned char red, unsigned char green, unsigned char blue)
Definition: vrfLine.h:21
DtPoint myPt2
Definition: vrfLine.h:35
Definition: vrfLine.h:16
unsigned char myRed
Definition: vrfLine.h:36
unsigned char myBlue
Definition: vrfLine.h:38
DtString myName
Definition: vrfLine.h:31
Definition: point.h:34

Document ID: Generated on Thu Oct 23 22:29:17 EDT 2025 from SVN revision 280951
Copyright © 2005-2024 MAK Technologies. All Rights Reserved (www.mak.com)