Touch.cpp
1// Copyright 2019 Arthur Sonzogni. All rights reserved.
2// Use of this source code is governed by the MIT license that can be found in
3// the LICENSE file.
4
5#include <smk/Touch.hpp>
6
7namespace smk {
8
9glm::vec2 Touch::position() const {
10 return data_points.back().position;
11}
12
13} // namespace smk