Beispiel #1
0
 public void GetPanelZone(string name,
                          ref ePanelZonePropertyType propertyType,
                          ref double thickness,
                          ref double k1,
                          ref double k2,
                          ref string linkProperty,
                          ref ePanelZoneConnectivity connectivity,
                          ref ePanelZoneLocalAxis localAxisFrom,
                          ref double localAxisAngle)
 {
 }
Beispiel #2
0
 public void SetPanelZone(string name,
                          ePanelZonePropertyType propertyType,
                          double thickness,
                          double k1,
                          double k2,
                          string linkProperty,
                          ePanelZoneConnectivity connectivity,
                          ePanelZoneLocalAxis localAxisFrom,
                          double localAxisAngle,
                          eItemType itemType = eItemType.Object)
 {
 }
Beispiel #3
0
        /// <summary>
        /// Converts the type of to panel zone property.
        /// </summary>
        /// <param name="value">The value.</param>
        /// <param name="doublePlateThickness">The double plate thickness.</param>
        /// <returns>ePanelZonePropertyType.</returns>
        private static string convertFromPanelZonePropertyType(ePanelZonePropertyType value)
        {
            switch (value)
            {
            case ePanelZonePropertyType.FromSpringStiffness:
                return("UserCoordinateSystemNames");

            case ePanelZonePropertyType.FromLink:
                return("Link");

            default:
                return("Elastic");
            }
        }