48 lines
903 B
VB.net
48 lines
903 B
VB.net
Imports System.Collections.ObjectModel
|
|
Imports System.IO
|
|
Imports EgtUILib
|
|
Imports EgtWPFLib5
|
|
|
|
Public Class Wall
|
|
Inherits Part
|
|
|
|
Protected m_dPOSY As Double
|
|
Public Property dPOSY As Double
|
|
Get
|
|
Return m_dPOSY
|
|
End Get
|
|
Set(value As Double)
|
|
m_dPOSY = value
|
|
End Set
|
|
End Property
|
|
|
|
Protected m_dROT As Double
|
|
Public Property dROT As Double
|
|
Get
|
|
Return m_dROT
|
|
End Get
|
|
Set(value As Double)
|
|
m_dROT = value
|
|
End Set
|
|
End Property
|
|
|
|
Protected m_dFLIP As Double
|
|
Public Property dFLIP As Double
|
|
Get
|
|
Return m_dFLIP
|
|
End Get
|
|
Set(value As Double)
|
|
m_dFLIP = value
|
|
End Set
|
|
End Property
|
|
|
|
#Region "CONSTRUCTOR"
|
|
|
|
Sub New(nParentMachGroup As MyMachGroup, nPartId As Integer)
|
|
MyBase.New(nParentMachGroup, nPartId)
|
|
End Sub
|
|
|
|
#End Region ' CONSTRUCTOR
|
|
|
|
End Class
|