コード例 #1
0
 public void ShiftBulkheadPoint(int bulkhead, int chine, double x, double y, double z)
 {
     Console.WriteLine("Shift Bulkhead: {0} {1} ({2},{3},{4}): {5}", bulkhead, chine, x * m_scale, y * m_scale, z * m_scale, m_scale);
     m_Hull.ShiftBulkheadPoint(bulkhead, chine, x / m_scale, y / m_scale, z / m_scale);
     LoadBulkheads();
     RotateTo(m_rotate_x, m_rotate_y, m_rotate_z);
     Scale();
     Draw();
 }