VCV Rack API v2
Loading...
Searching...
No Matches
keyboard.hpp
Go to the documentation of this file.
1#pragma once
2#include <common.hpp>
3#include <math.hpp>
4
5
6namespace rack {
8namespace keyboard {
9
10
12void press(int key);
13void release(int key);
16
17
18} // namespace keyboard
19} // namespace rack
#define PRIVATE
Attribute for private functions not intended to be called by plugins.
Definition common.hpp:30
void mouseMove(math::Vec pos)
pos is in the unit box.
void release(int key)
PRIVATE void init()
void press(int key)
Root namespace for the Rack API.
Definition AudioDisplay.hpp:9
2-dimensional vector of floats, representing a point on the plane for graphics.
Definition math.hpp:189