Focuses on creating web applications that run in a browser

What is Xamarin Forms?

October 1, 2020|

So, what is Xamarin Forms? Xamarin Forms is a library that enables you to build native apps for iOS, Android, and Windows using a single C# code base. Build stunning cross-platform user interfaces Xamarin.Forms is a feature of Xamarin, the popular mobile development framework that extends the .NET developer platform with tools and [...]

Operator in C++

November 4, 2017|

C++ operator is a symbol that is used to perform mathematical or logical manipulations. C++ language is rich with built-in operators. Arithmetic Operators Operator Description + Addition – Subtraction * Multiplication / Division % Modulus Increment and Decrement Operators Operator Description ++ Increment −− Decrement Relational Operators Operator Description == [...]

Cohen-Sutherland Line Clippings

October 29, 2017|

  Cohen-Sutherland Line Clippings algorithm uses the clipping window as shown in the following figure. The minimum coordinate for the clipping region is (XWmin,YWmin)(XWmin,YWmin) and the maximum coordinate for the clipping region is (XWmax,YWmax)(XWmax,YWmax).   We will use 4-bits to divide the entire region. These 4 bits represent the Top, Bottom, Right, and [...]

Go to Top