VisuTwin Canvas
C++ 3D Engine — Metal Backend
Loading...
Searching...
No Matches
input.h
Go to the documentation of this file.
1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2025-2026 Arnis Lektauers
3//
4// Created by Arnis Lektauers 02.01.2026
5//
6#pragma once
7
8namespace visutwin::canvas
9{
14 {
15
16 };
17
18 /*
19 * The base class for all input controllers
20 */
22 {
23 public:
24 virtual void attach(Pose* pose, bool smooth = true) {}
25 };
26}
virtual void attach(Pose *pose, bool smooth=true)
Definition input.h:24