Tính toán diện tích và chu vi của hình tròn
Contents
[
Hide
]Cách tính toán diện tích và chu vi của hình tròn
Vấn đề: Cách tính toán diện tích và chu vi của hình tròn (CADNET-1153).
Mẹo: Để làm điều này, lấy bán kính từ CadEntityTypeName.CIRCLE từ các thực thể và sử dụng công thức “2 * Math.PI * bán kính”.
Ví dụ:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach (CadBaseEntity entity in cadImage.Entities) | |
{ | |
if (entity.TypeName == CadEntityTypeName.CIRCLE) | |
{ | |
double radius = ((CadCircle)entity).Radius; | |
System.Console.WriteLine("Circumference= " + 2 * Math.PI * radius); | |
System.Console.WriteLine("Area= " + Math.PI * radius * radius); | |
} | |
} |