예제 #1
0
파일: HeatMap.c 프로젝트: rectang/lucy
HeatMap*
HeatMap_new(Vector *spans, uint32_t window) {
    HeatMap *self = (HeatMap*)Class_Make_Obj(HEATMAP);
    return HeatMap_init(self, spans, window);
}
예제 #2
0
파일: HeatMap.c 프로젝트: gitpan/KinoSearch
HeatMap*
HeatMap_new(VArray *spans, uint32_t window)
{
    HeatMap *self = (HeatMap*)VTable_Make_Obj(HEATMAP);
    return HeatMap_init(self, spans, window);
}