Skip to content

Instantly share code, notes, and snippets.

View Logrus's full-sized avatar
🎯
Focusing

Vladislav Tananaev Logrus

🎯
Focusing
View GitHub Profile
struct point{
unsigned int x, y;
point() {};
point (int a, int b) {
x = a; y = b;
}
bool point::operator ==(const point &a){
return (x == a.x && y == a.y);
}
};
@Logrus
Logrus / CMakeLists.txt
Created April 5, 2014 07:27
PCL Viewer with Qt GUI minimal code
cmake_minimum_required(VERSION 2.6)
PROJECT(qt_vtk_pcl)
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR})
find_package(PCL 1.7 REQUIRED)
include_directories(${PCL_INCLUDE_DIRS})
link_directories(${PCL_LIBRARY_DIRS})