path_flags_cw
return (c & ~(path_flags_cw | path_flags_ccw)) ==
return (c & path_flags_cw) != 0;
return (c & (path_flags_cw | path_flags_ccw)) != 0;
return c & ~(path_flags_cw | path_flags_ccw);
return c & (path_flags_cw | path_flags_ccw);
return (area < 0.0) ? path_flags_cw : path_flags_ccw;
path_flags_cw;
return path_cmd_end_poly | path_flags_close | path_flags_cw;