zoukankan      html  css  js  c++  java
  • IfcCircle

    An IfcCircle is a curve consisting of a set of points having equal distance from the center.

    NOTE  A circular arc segment is defined by using the IfcTrimmedCurve with BasisCurve being an IfcCircle.

    C = SELFIfcConic.Position.Location
    x = SELFIfcConic.Position.P[1]
    y = SELFIfcConic.Position.P[2]
    z = SELFIfcConic.Position.P[3]
    R = Radius

    and the circle is parameterized as

    formula

    The parameterization range is 0 ≤ u ≤ 2π (0 ≤ u ≤ 360 degree).
    In the placement coordinate system defined above, the circle is the equation C = 0, where

    formula

    The positive sense of the circle at any point is in the tangent direction, T, to the curve at the point, where

    formula
    NOTE  Entity adapted from circle defined in ISO 10303-42

    XSD Specification

    <xs:element name="IfcCircle" type="ifc:IfcCircle" substitutionGroup="ifc:IfcConic" nillable="true"/>
     <xs:complexType name="IfcCircle">
      <xs:complexContent>
       <xs:extension base="ifc:IfcConic">
        <xs:attribute name="Radius" type="ifc:IfcPositiveLengthMeasure" use="optional"/>
       </xs:extension>
      </xs:complexContent>
     </xs:complexType>

    EXPRESS Specification

    ENTITY IfcCircle
     SUBTYPE OF (IfcConic);
      Radius : IfcPositiveLengthMeasure;
    END_ENTITY;
     
  • 相关阅读:
    Centos7 keepalived 修改日志路径
    mysql 双主复制 centos7
    CentOs 7 安装mysql5.7.18(二进制版本)
    oracle、mysql新增字段,字段存在则不处理
    mysql+ibatis 批量插入
    oracle+ibatis 批量插入-支持序列自增
    oracle 批量插入-支持序列自增
    sftp上传
    java
    mysql
  • 原文地址:https://www.cnblogs.com/herd/p/12007022.html
Copyright © 2011-2022 走看看