klimi
Dima
pat pat
klimi
pat pat
thank you
Francisco
I've used OpenGL, SFML and Unity, and I've learnt the most with SFML than any other. OpenGL is too low level, and Unity is too high level
Asiman
python isn't necessary for me, i could learn any technology(at least i hope)
klimi
I've used OpenGL, SFML and Unity, and I've learnt the most with SFML than any other. OpenGL is too low level, and Unity is too high level
ive used from unity to opengl, spent probably most time with opengl... (but haven't got far because i am shit)
Asiman
i'm interested in gamedev as software development industry not as implement mine game ideas
Mar!o
I've used Vulkan to create my own engine. It's by far the most challenging but fun way!
Francisco
ive used from unity to opengl, spent probably most time with opengl... (but haven't got far because i am shit)
I had a whole subject of graphics with OpenGL, and it was quite painful tbh. With SFML I have a lot more done, and can also embed OpenGL code at any moment
klimi
i haven't done any computer school
klimi
if i do my finals on my high school i am going to go to computer science to uni
Mar!o
I've used Vulkan to create my own engine. It's by far the most challenging but fun way!
And you learn a lot of weird stuff like tan(x) is just sin(x) / cos(x)
Francisco
And you learn a lot of weird stuff like tan(x) is just sin(x) / cos(x)
C'mon, you don't really need to do graphics to learn that hahaha
Mar!o
C'mon, you don't really need to do graphics to learn that hahaha
Of course not but it's something weird I've learned by doing that 😂
Francisco
By that mean, you can also learn that (cos(t), sin(t)) is a point in the circle of radius 1, but those are maths you should already know before digging deeper into graphics
Anonymous
hi. I get a error of double free or corruption (out) and I don't know why. When I remove the delete [] of two memory dynamics work without errors
Anonymous
https://pastebin.com/MPggrghh
Anonymous
The source, the error is with delete [] coordx; delete [] coordy;
Brian
Hello guys👋. Its 11:30pm East African time🇰🇪. People are deeply asleep and i wanna join them. See u tomorrow programmers Copy that🔅
Dima
what
Dima
lol
Artöm
https://pastebin.com/MPggrghh
> int traveled[DIM_MAP]; Dont use vla
Anonymous
I dont understant ...
Artöm
Check if count can be more than DIM_MAP
Artöm
I dont understant ...
Array size must be constant expression
Anonymous
ok
Anonymous
but it cant be constant because I need to calcule the size of the array first
Artöm
Then this array needs to be dynamic
Francisco
but it cant be constant because I need to calcule the size of the array first
Then you want dynamic allocations (malloc/free or new/delete)
Anonymous
Ok
Anonymous
I fixed that but I still have the error
Anonymous
double free or corruption (out)
Anonymous
I still have this error. And I fixed the array issue ...
Anonymous
ill give him a text
ey you have a email address @sitischu.com oh wait you are in all the devs groups too
Anonymous
yeah
Anonymous
Thank you very mutch! Fixed
Anonymous
yes
i didn't see that lol
Sebastian
Thanks am in
Dima
@mmarinasex69 yes
Dima
/ban @mmarinasex69
Teo
/best-book
Anonymous
Can anyone help me with the numbering from 11 to 19?#include <iostream> using namespace std; int main() { int row; int nasterisk; cout << "Line" << "\t\t" << "Asterisk" << endl; for(row=1;row<=10;row++) { cout << row << "\t\t"; for (nasterisk=1;nasterisk<=row;nasterisk++) { cout << "*"; } cout << endl; } for (row=10;row>1;row--) { cout << "\t\t"; for (nasterisk=1;nasterisk<row;nasterisk++) { cout << "*"; } cout << endl; } return 0; }
Faruk
Faruk
please help me
Faruk
this parallel programming in Linux
Anonymous
Anonymous
Answer is -3 how
Anonymous
Explain please
Anonymous
If i will remove brac
Anonymous
guys how do i add an external header to qtcreator :c , i added the header file in the project's dir too but that doesnt work :(
Anonymous
https://files.shadowlabs.cc/TYRONE.mp4
Afoo_trader
Am new to c programming and I need a guide
Anonymous
Given two non-negative integers A and B, and limits X and Y,find the smallest integer Z which lies between X and Y such that (A&Z).(B&Z) is maximum possible. &=Bitwise Can anyone help me in this
Anonymous
Ya
Anonymous
Hint
Use loop and if/else
Anonymous
Use loop and if/else
Thanks for this hint
Serenity
Can somebody help me what is wrong with my matrix multiplication function ?
Serenity
void mult_mat(int mat1[][SIZE], int mat2[][SIZE], int result_mat[][SIZE]) { int i, j, k; for (i = 0; i < SIZE; i++) { for (j = 0; j < SIZE; j++) { for (k = 0; k < SIZE; k++) { result_mat[i][j] = (result_mat[i][j]) | (mat1[i][k]) & (mat2[k][j]); printf("%d", result_mat[i][j]); } } } }
Serenity
I am doing it and it still does not work
Serenity
The multiplication is defined a little differently than regular matrix multiplication but it has the same functionality
Serenity
logical multiplication ( two matrices filled with zeros and ones) , and + is considered as "OR" and * is considered as "AND"
Serenity
I have two 5 VS 5 matrices ,filled with 1's and zeros , I just need to execute a simple logical multiplication and store the result in a third result matrix.
Anonymous
also, since the matrices only contain 1 or 0, why not use && and ||?
Serenity
That is what I have done before
Serenity
I have used bitwise operators before since the relations between the numbers are of OR or AND type..
Serenity
But the resultant matrix has somehow more 25 elements and I have no idea why
Serenity
more than
Serenity
Serenity
The long string of bits below is the resultant matrix's values..