自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Muto_33的博客

单纯的个人总结

  • 博客(4)
  • 问答 (4)
  • 收藏
  • 关注

原创 kinect2.0图像输出综合

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.W

2017-03-04 10:36:51 802 3

原创 链表实现Weiler-Atherton多边形裁剪算法

#include#include#includeusing namespace std;int result[6][2] = { { 22, 10 },{ 50, 80 },{ 80, 15 },{ 90, 80 },{ 100, 30 },{ 100, 10 } };int re[4][2] = { { 20, 120 },{ 120, 120 },{ 120, 20 },{ 20,

2017-03-04 10:10:48 4611 1

原创 Sutherland-Hodgman算法(多边形裁剪)

用链表方法实现:#include#includeusing namespace std;int result[50][2] = { {10, 80},{70, 10},{80, 80},{90, 10},{130, 80},{80, 130}};enum mark { L, B, R, T};int c = -1;struct node { float data[2]; nod

2017-03-04 10:08:23 13113 1

原创 opengl实现cs、liang-barsky直线裁剪算法

#include#include#define L 00001#define R 00002#define B 00004#define T 00010#define M 00000#define LT 00011#define LB 00005#define RT 00012#define RB 00006//#define L 0x0001//#define R 0x

2017-03-04 09:54:40 7324 1

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除