Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Point in polygon #4

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 26 additions & 13 deletions include/mapbox/glyph_foundry_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,23 +130,38 @@ namespace sdf_glyph_foundry
return 0;
}

// point in polygon ray casting algorithm
int is_left(Point const& p0, Point const& p1, Point const& p2)
{
double val = ( (p1.get<0>() - p0.get<0>()) * (p2.get<1>() - p0.get<1>())
- (p2.get<0>() - p0.get<0>()) * (p1.get<1>() - p0.get<1>()) );
if (val > 0) return 1;
else if (val < 0) return -1;
else return 0;
}
// point in polygon winding number algorithm
bool PolyContainsPoint(const Rings &rings, const Point &p)
{
bool c = false;

for (const Points &ring : rings) {
int winding_number = 0;
for (Points const&ring : rings) {
auto p1 = ring.begin();
auto p2 = p1 + 1;

for (; p2 != ring.end(); p1++, p2++) {
if (((p1->get<1>() > p.get<1>()) != (p2->get<1>() > p.get<1>())) && (p.get<0>() < (p2->get<0>() - p1->get<0>()) * (p.get<1>() - p1->get<1>()) / (p2->get<1>() - p1->get<1>()) + p1->get<0>())) {
c = !c;
for (; p2 != ring.end(); ++p1, ++p2)
{
if ( p1->get<1>() <= p.get<1>())
{
if (p2->get<1>() > p.get<1>()) //an upward crossing
if (is_left(*p1, *p2, p) > 0 ) // p is left of edge
++winding_number; //upward intersect
}
else
{
if (p2->get<1>() <= p.get<1>()) // an downward crossing
if (is_left(*p1, *p2, p) < 0) // p is right of edge
--winding_number; //downward intersect
}
}
}

return c;
return (winding_number != 0);
}

double SquaredDistance(const Point &v, const Point &w)
Expand Down Expand Up @@ -265,6 +280,7 @@ namespace sdf_glyph_foundry
double bbox_xmax = -std::numeric_limits<double>::infinity(),
bbox_ymax = -std::numeric_limits<double>::infinity();


for (const Points &ring : user.rings) {
for (const Point &point : ring) {
if (point.get<0>() > bbox_xmax) bbox_xmax = point.get<0>();
Expand All @@ -288,7 +304,6 @@ namespace sdf_glyph_foundry
}

if (bbox_xmax - bbox_xmin == 0 || bbox_ymax - bbox_ymin == 0) return;

glyph.left = bbox_xmin;
glyph.top = bbox_ymax;
glyph.width = bbox_xmax - bbox_xmin;
Expand Down Expand Up @@ -321,13 +336,11 @@ namespace sdf_glyph_foundry
});
}
}

// Loop over every pixel and determine the positive/negative distance to the outline.
unsigned int buffered_width = glyph.width + 2 * buffer;
unsigned int buffered_height = glyph.height + 2 * buffer;
unsigned int bitmap_size = buffered_width * buffered_height;
glyph.bitmap.resize(bitmap_size);

for (unsigned int y = 0; y < buffered_height; y++) {
for (unsigned int x = 0; x < buffered_width; x++) {
unsigned int ypos = buffered_height - y - 1;
Expand Down
Binary file removed test/fixtures/A
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/@
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/A
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/B
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/C
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/D
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/E
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/F
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/G
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/H
Binary file not shown.
1 change: 1 addition & 0 deletions test/fixtures/Jost-Bold/I
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Pfsvvvvvvvvvvvvvvvvvq`Ib}�������������������vZk���������������������cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cl������������������ã�cj���������������������b_y�������������������rWL`moooooooooooooooook[E
Binary file added test/fixtures/Jost-Bold/J
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/K
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/L
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/M
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/N
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/O
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/P
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/Q
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/R
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/S
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/T
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/U
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/V
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/W
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/X
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/Y
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/Z
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/a
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/b
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/c
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/d
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/e
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/f
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/g
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/h
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/i
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/j
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/k
Binary file not shown.
1 change: 1 addition & 0 deletions test/fixtures/Jost-Bold/l
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SdkkkkkkkkkkkkkkkkbQi�����������������~gx������������������uz���������������˷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������׷�wz���������������Ϸ�wy������������������vk������������������iVgoooooooooooooooofT
Binary file added test/fixtures/Jost-Bold/m
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/n
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/o
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/p
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/q
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/r
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/s
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/t
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/u
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/v
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/w
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/x
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/y
Binary file not shown.
Binary file added test/fixtures/Jost-Bold/z
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/@
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/A
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/B
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/C
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/D
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/E
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/F
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/G
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/H
Binary file not shown.
1 change: 1 addition & 0 deletions test/fixtures/OpenSans-Regular/I
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
:N\`````````ZKOgz���������wc]{�����������ub������������|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ܼ�|b���������ϼ�|a������������zVq�����������mD[jooooooooohW
Binary file added test/fixtures/OpenSans-Regular/J
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/K
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/L
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/M
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/N
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/O
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/P
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/Q
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/R
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/S
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/T
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/U
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/V
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/W
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/X
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/Y
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/Z
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/a
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/b
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/c
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/d
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/e
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/f
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/g
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/h
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/i
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/j
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/k
Binary file not shown.
1 change: 1 addition & 0 deletions test/fixtures/OpenSans-Regular/l
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
G\jmmmmmmmmlaNZt����������{bf������������ng���������Ͱ�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������а�pg���������ϰ�pf������������o[v����������|cI^looooooooncO
Binary file added test/fixtures/OpenSans-Regular/m
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/n
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/o
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/p
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/q
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/r
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/s
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/t
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/u
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/v
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/w
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/x
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/y
Binary file not shown.
Binary file added test/fixtures/OpenSans-Regular/z
Binary file not shown.
Binary file added test/fonts/Jost-Bold.ttf
Binary file not shown.
Empty file modified test/fonts/OpenSans-Regular.ttf
100755 → 100644
Empty file.
46 changes: 32 additions & 14 deletions test/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ struct ft_face_guard {
FT_Face face_;
};

std::string renderGlyph(FT_ULong code_point) {
std::string renderGlyph(FT_ULong code_point, std::string font_name) {
FT_Library library = nullptr;
ft_library_guard library_guard(library);
FT_Error error = FT_Init_FreeType(&library);
Expand All @@ -41,13 +41,14 @@ std::string renderGlyph(FT_ULong code_point) {

FT_Face ft_face = 0;
ft_face_guard face_guard(ft_face);
FT_Error face_error = FT_New_Face(library, "test/fonts/OpenSans-Regular.ttf", 0, &ft_face);
std::string path = "test/fonts/" + font_name + ".ttf";
FT_Error face_error = FT_New_Face(library, path.c_str() , 0, &ft_face);
if (face_error) {
fprintf(stderr,"could not open font");
return "";
}

const double scale_factor = 1.0;
const double scale_factor = 4.0;

// Set character sizes.
double size = 24 * scale_factor;
Expand All @@ -64,21 +65,38 @@ std::string renderGlyph(FT_ULong code_point) {
}

glyph.glyph_index = char_index;
sdf_glyph_foundry::RenderSDF(glyph, 24, 3, 0.25, ft_face);
sdf_glyph_foundry::RenderSDF(glyph, size, 3, 0.25, ft_face);
return glyph.bitmap;
};

void testGlyph(FT_ULong code_point, const std::string& name) {
std::string bitmap = renderGlyph(code_point);

std::ifstream t(("test/fixtures/" + name).c_str());
std::stringstream buffer;
buffer << t.rdbuf();

assert(buffer.str() == bitmap);
void testGlyph(FT_ULong code_point, std::string const& name, std::string const& font_name) {
std::string bitmap = renderGlyph(code_point, font_name);
std::ifstream t(("test/fixtures/" + font_name + "/" + name).c_str());
if (!t) {
std::ofstream output(("test/fixtures/" + font_name + "/" + name).c_str(), std::ios::binary);
output << bitmap;
output.close();
}
else {
std::stringstream buffer;
buffer << t.rdbuf();
assert(buffer.str() == bitmap);
}
};

int main() {
testGlyph(41, "A");
int main(int argc, char** argv)
{
// test some printable ASCII
for (int i = 64; i <= 90; ++i)
{
testGlyph(i, std::string(1, char(i)), "OpenSans-Regular");
testGlyph(i, std::string(1, char(i)), "Jost-Bold");
}
for (int i = 97; i <= 122; ++i)
{
testGlyph(i, std::string(1, char(i)), "OpenSans-Regular");
testGlyph(i, std::string(1, char(i)), "Jost-Bold");
}
std::cerr << "Done."<< std::endl;
return 0;
}