Liang–Barsky algorithm: Difference between revisions

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:
}
}
// This code was implemented by Grishul Eugeny as part of preparation
// to exam in ITMO university
</source>