vs2017 tag

3 questions


1 answers
88 views
0
I have a question as I am analyzing the source of the circle drawing in OpenGL rotation.

#define PI 3.1415926#define No_theta 36#define No_phi 18 float theta, phi;float delta_theta, delta_phi;float start_theta, start_phi;float Radius;void Vertex_Generation(void){ start_theta = 0.0; delta_...

2 years ago

1 answers
103 views
0
I have a question about the timing of the C++ temporary object, generator, and extinction.

class Stock{private: string company; long shares; double share_val; double total_val; void set_tot() { total_val = shares * share_val; }public: //Two constructors Stock(); // Default constructor Stoc...

2 years ago

1 answers
82 views
0
I have a question in C language typeef and function pointer.

Hello, I'm asking you a question because there are parts in grammar that I don't understand well while studying the data structure.typedef void VisitFuncPtr(BTData data);void InorderTraverse (BTreeNod...

2 years ago

© 2024 OneMinuteCode. All rights reserved.