TriangleElement.TriangleElementClass.PointsToMap C# (CSharp) 메소드

PointsToMap() 개인적인 메소드

private PointsToMap ( IDisplayTransformation displayTransform, double dPointSize ) : double
displayTransform IDisplayTransformation
dPointSize double
리턴 double
    private double PointsToMap(IDisplayTransformation displayTransform, double dPointSize)
    {
      double tempPointsToMap = 0;
      if (displayTransform == null)
        tempPointsToMap = dPointSize * m_dDeviceRatio;
      else
      {
        tempPointsToMap = displayTransform.FromPoints(dPointSize);
      }
      return tempPointsToMap;
    }