Content deleted Content added
No edit summary |
|||
Line 3:
==The algorithm==
Below is a C# implementation for Liang-Barsky algorithm
<source lang="csharp">
internal sealed class LiangBarskyClipping : IClippingAlgorithm {
Line 79:
}
}
</source>
|