Laugh Test

Ruby The Roobster michaeleverestc79 at gmail.com
Thu Sep 24 20:20:07 UTC 2020


On Thursday, 24 September 2020 at 19:54:40 UTC, mipri wrote:
> There are parts of that I don't understand at all, like the
> sorted_point logic, and this.next_move, so that limits what I
> can suggest.

To add a little context, this.next_move has to do with where the 
shape is moving:

struct position{
double x;
double y;
double z;
}
class shape {
//Bunch of member functions
protected:
position next_move;
}

sorted_point after the sortLowtoHigh!double() call is the member 
values of next_move sorted from lowest(sorted_point[0]) to 
highest(sorted_point[2])


More information about the Digitalmars-d mailing list