예제 #1
0
파일: Joint.cs 프로젝트: tsvilans/glulamb
 public JointPart(JointPart jp)
 {
     Element  = jp.Element;
     Joint    = jp.Joint;
     Index    = jp.Index;
     Geometry = jp.Geometry;
 }
예제 #2
0
파일: Joint.cs 프로젝트: tsvilans/glulamb
 protected Joint3()
 {
     Parts = new JointPart[3];
 }
예제 #3
0
파일: Joint.cs 프로젝트: tsvilans/glulamb
 protected Joint2()
 {
     Parts = new JointPart[2];
 }
예제 #4
0
파일: Joint.cs 프로젝트: tsvilans/glulamb
 protected Joint1()
 {
     Parts = new JointPart[1];
 }
예제 #5
0
파일: Joint.cs 프로젝트: tsvilans/glulamb
 protected Joint4()
 {
     Parts = new JointPart[4];
 }