C++ 사용 sturct point { float x; float y; }; std::vector vec_p; float f_radius=5.0; float f_center_x=0; float f_center_y=0; float f_start_theta=0; float f_end_theta=180; for (int i = f_start_theta; i < f_end_theta; i++) //1 degree 마다 { point p; float f_x = cos(i*DEG2RAD)*f_radius + f_center_x; float f_y = sin(i*DEG2RAD)*f_radius + f_center_y; p.x(f_x); p.y(f_y); vec_p.emplace_back(o_tmp_pos); } ve..