python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
UI bug for the light theme (Fragment)
I've created a new project in Android Studio and there is a UI bug for the interface and I am not able to fix it. I don't understand what is this problem.
Basically it appears a top margin / a top pad...
MrMe
Votes: 0
Answers: 1
Why is z-buffering fast?
When I made my rasterizer, I realized that each pixel needed to compare all the triangles in the model to determine the depth value. But if there are, for example, a million of these triangles, then i...
Lit
Votes: 0
Answers: 1
How to constantly update a canvas with a string?
I'm attempting to make a simple game that displays the word that the user types as they type it.
However, I'm unsure how I could recall or update the write() method in order to show the string current...
JLoundy
Votes: 0
Answers: 1
Bitmap image - Decrease the number of pixels
I am using the following code
Bitmap bitmap = new Bitmap(Screen.PrimaryScreen.Bounds.Width,Screen.PrimaryScreen.Bounds.Height);
Graphics graphics = Graphics.FromImage(bitmap as Image);
graphics.Copy...
Trafel
Votes: 0
Answers: 1