2a2967ad1f03472bee5f9b2918ddaa60 by 2024

2a2967ad1f03472bee5f9b2918ddaa60 by 2024

Author:2024
Language: eng
Format: epub


Having fun with the pixels

When learning computer graphics, before jumping to complicated algorithms like 3D rendering, there are some other stuff you can do to leverage your power of manipulating pixels.

There are plenty of things you can draw on a 2D surface. Let’s start with drawing a simple 2D line. A 2d line may be defined by its slope and offset: y = ax + b

Given two points, you can find the corresponding a and b that passes through this line too. Assuming the points are: P 1 = ( x 1 , y 1) and P 2 = ( x 2 , y 2): a = y 2− y 1

x 2− x 1

b = − ax 2 + y 2

Let’s have a class for working with lines!

class Line:

def __init__(self, slope: float, offset: float): self.slope = slope

self.offset = offset

def get_y(self, x: float):

return self.slope * x + self.offset

@staticmethod

def from_points(a: Vec2D, b: Vec2D) -> Line: slope = (b.y - a.y) / (b.x - a.x)

offset = -slope * b.x + a.x

return Line(slope, offset)

Here is something interesting to draw with simple lines:

[TODO]



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Popular ebooks
Whisky: Malt Whiskies of Scotland (Collins Little Books) by dominic roskrow(52235)
What's Done in Darkness by Kayla Perrin(26271)
Shot Through the Heart: DI Grace Fisher 2 by Isabelle Grey(18802)
Shot Through the Heart by Mercy Celeste(18684)
The Fifty Shades Trilogy & Grey by E L James(18570)
The Subtle Art of Not Giving a F*ck by Mark Manson(13894)
The 3rd Cycle of the Betrayed Series Collection: Extremely Controversial Historical Thrillers (Betrayed Series Boxed set) by McCray Carolyn(13838)
Stepbrother Stories 2 - 21 Taboo Story Collection (Brother Sister Stepbrother Stepsister Taboo Pseudo Incest Family Virgin Creampie Pregnant Forced Pregnancy Breeding) by Roxi Harding(12763)
Scorched Earth by Nick Kyme(12506)
Drei Generationen auf dem Jakobsweg by Stein Pia(10735)
Suna by Ziefle Pia(10667)
Scythe by Neal Shusterman(10012)
International Relations from the Global South; Worlds of Difference; First Edition by Arlene B. Tickner & Karen Smith(9277)
Successful Proposal Strategies for Small Businesses: Using Knowledge Management ot Win Govenment, Private Sector, and International Contracts 3rd Edition by Robert Frey(9092)
This is Going to Hurt by Adam Kay(8723)
Dirty Filthy Fix: A Fixed Trilogy Novella by Laurelin Paige(7332)
How to Make Love to a Negro Without Getting Tired by Dany LaFerrière(6736)
He Loves Me...KNOT by RC Boldt(6622)
Unleashing the Power of UX Analytics: Proven techniques and strategies for uncovering user insights [Team-IRA] [True PDF] by Jeff Hendrickson(6280)
Interdimensional Brothel by F4U(6083)