标签:des blog http color os ar strong for div
void | drawDot (const Vec2 &pos, float radius, const Color4F &color) |
给定半径以及颜色,绘制预定位置的点 |
在坐标100,100上绘制了一个半径为10的绿色圆点
2.drawSegment 画一条直线,官方解释
void | drawSegment (const Vec2 &from, const Vec2 &to, float radius, const Color4F &color) |
给定半径以及颜色绘制一条线段 |
3.drawPolygon 画一个多边形,官方解释
void | drawPolygon (Vec2 *verts, int count, const Color4F &fillColor, float borderWidth, const Color4F &borderColor) |
给定填充颜色以及线条颜色绘制一个多边形 |
实例:
第一个多边形定义了4个点,第二个多边形 定了5个点
标签:des blog http color os ar strong for div
原文地址:http://www.cnblogs.com/liujidong/p/3981867.html