Logo

Programming-Idioms

History of Idiom 5 > diff from v363 to v364

Edit summary for version 364 by programming-idioms.org:
[D] Comments

Version 363

2017-07-26, 00:45:10

Version 364

2017-07-29, 23:22:02

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Illustration

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Illustration
Code
struct Point{
    double x;
    double y;
}

    
Code
struct Point{
    double x;
    double y;
}

    
Comments bubble
Structs are value types.