dda line algorithm easily create in c using opengl|opengl bangla tutorials . I try to show how to easily draw digital differential analyzer line drawing algorithm using opengl c programming.DDA line drawing algorithm is the importent part in computer graphics .I just wanted to explain the source code how it is work easily . Formula of DDA line drawing algorithm: Step : 1 If the slope is less than or equal to 1, the unit x intervals Dx =1 and compute each successive y values. Dx =1 m= Dy / Dx m = ( y2 – y1 ) / 1 m = (yk+1 – yk)/ 1 yk+1 = yk + m Step : 2 If the slope is greater than 1, the roles of x any y at the unit y intervals Dy =1 and compute each successive x values. Dy =1 m= Dy / Dx m = 1 / (x2 – x1 ) m = 1 / (xk+1 – xk) xk+1 = xk + (1/m) Step : 3 If the processing is reversed, the starting point at the right . ...
preemptive priority scheduling algorithm |operating system bangla tutorials. Steps: 1. প্রথমে আমাদের দেখতে হবে কার Arrival time সবচেয়ে কম । 2. তারপর আমাদের দেখতে হবে কার priority সবচেয়ে কম তথা যদি আমরা সবচেয়ে কম Number কে height বিবেচনা করি তাহলে সেটা দেখতে হবে আর যদি আমরা height number কে height priority বিবেচনা করি তাহলে সেটা নিয়া কাজ করতে হবে । 3.যদি আমরা Height priority পেয়ে যাই তাহলে সেই Process এর Brust time যা আছে তাই পুরোটা ব্যবহার করতে হবে । যদি Height Priority না পাই তাহলে Next arrival time পর্যন্ত আমাদের Process কে রান করতে হবে । আমি বিশ্বাস করি যে যদি কেউ প্রথম থেকে শেষপর্যন্ত এই ভিডিওটি দেখতে পায়,তাহলেতিনি/সেটি শিখতে পারবেন কিভাবে preemptive priority scheduling algorithm কাজ করে। Keep In Touch: Facebook: https://www.facebook.com/Le...