当前位置: 首页>>代码示例>>C#>>正文


C# DataOutputStream.writeDouble方法代码示例

本文整理汇总了C#中DISnet.DataStreamUtilities.DataOutputStream.writeDouble方法的典型用法代码示例。如果您正苦于以下问题:C# DataOutputStream.writeDouble方法的具体用法?C# DataOutputStream.writeDouble怎么用?C# DataOutputStream.writeDouble使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DISnet.DataStreamUtilities.DataOutputStream的用法示例。


在下文中一共展示了DataOutputStream.writeDouble方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: marshal

 ///<summary>
 ///Marshal the data to the DataOutputStream.  Note: Length needs to be set before calling this method
 ///</summary>
 public new void marshal(DataOutputStream dos)
 {
     base.marshal(dos);
     try
     {
        _objectID.marshal(dos);
        _referencedObjectID.marshal(dos);
        dos.writeUshort((ushort)_updateNumber);
        dos.writeByte((byte)_forceID);
        dos.writeByte((byte)_modifications);
        _objectType.marshal(dos);
        _objectLocation.marshal(dos);
        _objectOrientation.marshal(dos);
        dos.writeDouble((double)_objectAppearance);
        _requesterID.marshal(dos);
        _receivingID.marshal(dos);
        dos.writeUint((uint)_pad2);
     } // end try
     catch(Exception e)
     {
       Trace.WriteLine(e);
       Trace.Flush();
     }
 }
开发者ID:mcgredonps,项目名称:open-dis-csharp,代码行数:27,代码来源:PointObjectStatePdu.cs

示例2: marshal

        ///<summary>
        ///Marshal the data to the DataOutputStream.  Note: Length needs to be set before calling this method
        ///</summary>
        public new void marshal(DataOutputStream dos)
        {
            base.marshal(dos);
            try
            {
                _groupEntityID.marshal(dos);
                dos.writeByte((byte)_groupedEntityCategory);
                dos.writeByte((byte)_groupedEntityDescriptions.Count);
                dos.writeUint((uint)_pad2);
                dos.writeDouble((double)_latitude);
                dos.writeDouble((double)_longitude);

                for(int idx = 0; idx < _groupedEntityDescriptions.Count; idx++)
                {
                    VariableDatum aVariableDatum = (VariableDatum)_groupedEntityDescriptions[idx];
                    aVariableDatum.marshal(dos);
                } // end of list marshalling

            } // end try
            catch(Exception e)
            {
                Trace.WriteLine(e);
                Trace.Flush();
            }
        }
开发者ID:mcgredonps,项目名称:open-dis-csharp,代码行数:28,代码来源:IsGroupOfPdu.cs

示例3: marshal

        ///<summary>
        ///Marshal the data to the DataOutputStream.  Note: Length needs to be set before calling this method
        ///</summary>
        public new void marshal(DataOutputStream dos)
        {
            base.marshal(dos);
            try
            {
               dos.writeUshort((ushort)_site);
               dos.writeUshort((ushort)_application);
               dos.writeUshort((ushort)_entity);
               dos.writeByte((byte)_forceId);
               dos.writeByte((byte)_articulationParameters.Count);
               dos.writeByte((byte)_entityKind);
               dos.writeByte((byte)_domain);
               dos.writeUshort((ushort)_country);
               dos.writeByte((byte)_category);
               dos.writeByte((byte)_subcategory);
               dos.writeByte((byte)_specific);
               dos.writeByte((byte)_extra);
               dos.writeByte((byte)_altEntityKind);
               dos.writeByte((byte)_altDomain);
               dos.writeUshort((ushort)_altCountry);
               dos.writeByte((byte)_altCategory);
               dos.writeByte((byte)_altSubcategory);
               dos.writeByte((byte)_altSpecific);
               dos.writeByte((byte)_altExtra);
               dos.writeFloat((float)_xVelocity);
               dos.writeFloat((float)_yVelocity);
               dos.writeFloat((float)_zVelocity);
               dos.writeDouble((double)_xLocation);
               dos.writeDouble((double)_yLocation);
               dos.writeDouble((double)_zLocation);
               dos.writeFloat((float)_psi);
               dos.writeFloat((float)_theta);
               dos.writeFloat((float)_phi);
               dos.writeUint((uint)_entityAppearance);
               dos.writeByte((byte)_deadReckoningAlgorithm);

               for(int idx = 0; idx < _otherParameters.Length; idx++)
               {
               dos.writeByte(_otherParameters[idx]);
               } // end of array marshaling

               dos.writeFloat((float)_xAcceleration);
               dos.writeFloat((float)_yAcceleration);
               dos.writeFloat((float)_zAcceleration);
               dos.writeFloat((float)_xAngularVelocity);
               dos.writeFloat((float)_yAngularVelocity);
               dos.writeFloat((float)_zAngularVelocity);

               for(int idx = 0; idx < _marking.Length; idx++)
               {
               dos.writeByte(_marking[idx]);
               } // end of array marshaling

               dos.writeUint((uint)_capabilities);

               for(int idx = 0; idx < _articulationParameters.Count; idx++)
               {
            ArticulationParameter aArticulationParameter = (ArticulationParameter)_articulationParameters[idx];
            aArticulationParameter.marshal(dos);
               } // end of list marshalling

            } // end try
            catch(Exception e)
            {
              Trace.WriteLine(e);
              Trace.Flush();
            }
        }
开发者ID:mcgredonps,项目名称:open-dis-csharp,代码行数:71,代码来源:FastEntityStatePdu.cs

示例4: marshal

 ///<summary>
 ///Marshal the data to the DataOutputStream.  Note: Length needs to be set before calling this method
 ///</summary>
 public void marshal(DataOutputStream dos)
 {
     try
     {
         dos.writeByte((byte)_parameterTypeDesignator);
         dos.writeByte((byte)_changeIndicator);
         dos.writeUshort((ushort)_partAttachedTo);
         dos.writeUint((uint)_parameterType);
         dos.writeDouble((double)_parameterValue);
     } // end try
     catch(Exception e)
     {
         Trace.WriteLine(e);
         Trace.Flush();
     }
 }
开发者ID:mcgredonps,项目名称:open-dis-csharp,代码行数:19,代码来源:ArticulationParameter.cs

示例5: marshal

 ///<summary>
 ///Marshal the data to the DataOutputStream.  Note: Length needs to be set before calling this method
 ///</summary>
 public void marshal(DataOutputStream dos)
 {
     try
     {
        dos.writeDouble((double)_x);
        dos.writeDouble((double)_y);
        dos.writeDouble((double)_z);
     } // end try
     catch(Exception e)
     {
       Trace.WriteLine(e);
       Trace.Flush();
     }
 }
开发者ID:mcgredonps,项目名称:open-dis-csharp,代码行数:17,代码来源:Vector3Double.cs


注:本文中的DISnet.DataStreamUtilities.DataOutputStream.writeDouble方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。