Logo

Programming-Idioms

History of Idiom 5 > diff from v5 to v6

Edit summary for version 6 by :

Version 5

2015-08-20, 15:42:50

Version 6

2015-08-21, 09:02:11

Idiom #5 Create a 2D Point data structure

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

Idiom #5 Create a 2D Point data structure

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

Code
class Point {
  double x, y;
}