Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #pragma once
  2. class Strophoid
  3. {
  4. public:
  5.  
  6.     float getCoord();
  7.    
  8.     float getDist();
  9.    
  10.     float getRad();  
  11.  
  12.     float getSquare();  
  13.  
  14.     float getVolume();    
  15.  
  16.     float getSquareOuOv();
  17.  
  18. private:
  19.     float x, y, a, d, r, s, v, souov;
  20.    
  21. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement