reVeno/Source/Veno/Utils.h
versustunez ac22ea5e75 - reformat to JUCE-Guidelines
- added Matrix => half working ;)
2020-06-13 16:52:16 +02:00

22 lines
361 B
C++

//
// Created by versustune on 08.06.20.
//
#ifndef VENO_UTILS_H
#define VENO_UTILS_H
#include "JuceHeader.h"
namespace VeNo
{
class Utils
{
public:
Utils () = default;
~Utils () = default;
static int nextPowerOfTwo (float value);
static float setFontSize (float size, Graphics& g);
};
}
#endif //VENO_UTILS_H