Tagged Questions

3
votes
3answers
2k views

C# Math vs. XNA MathHelper

Ever since I needed to work with PI (3.1415...) in C# I have used Math.PI to get the value. Usually I would just use values like Math.PI/2.0 or 2.0*Math.PI, but now I have just noticed that XNA ...
1
vote
1answer
66 views

Arbitrary Precision for decimals in C# help?

Here is my current code for computing Pi using the chudnovsky method in c#: using System; using System.Diagnostics; using System.IO; using java.math; namespace pi.chudnovsky { public class ...