[Geometry and Graphics ]
一刀不二
这个作者很懒,什么都没留下…
展开
-
christoffel 符号的直观解释
看的 bilibili 的“冰侍狐”的讲解,就不整理了,直接截图。原创 2022-10-12 11:46:48 · 616 阅读 · 0 评论 -
二维凸包 Graham 算法
三点以下的情况就不写了 Python: import math class Point( object ): def __init__( self, x, y ): self.x = x self.y = y def __cmp__( self, other ): if self.y < other.y:原创 2014-09-12 23:46:06 · 1377 阅读 · 0 评论 -
多维空间树 kd-tree
#lang scheme ( define ( make-node point axis left-child right-child ) ( define ( dispatch msg . args ) ( cond [ ( eq? msg 'point ) point ] [ ( eq? msg 'axis ) axis原创 2015-05-26 17:08:07 · 1699 阅读 · 0 评论 -
bresenham 画线算法
var canvas = document.getElementById( "C" ); var context = canvas.getContext( "2d" ); var image_data = context.getImageData( 0, 0, 600, 600 ); function put_pixel( i原创 2015-07-25 21:52:33 · 916 阅读 · 0 评论 -
金刚石图纹
.info { position: relative; margin-bottom: 5px; } .info input { width:原创 2015-08-04 13:05:39 · 1161 阅读 · 0 评论