当前位置: 首页>>代码示例>>Java>>正文


Java IntOctagon.corner_y方法代码示例

本文整理汇总了Java中geometry.planar.IntOctagon.corner_y方法的典型用法代码示例。如果您正苦于以下问题:Java IntOctagon.corner_y方法的具体用法?Java IntOctagon.corner_y怎么用?Java IntOctagon.corner_y使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在geometry.planar.IntOctagon的用法示例。


在下文中一共展示了IntOctagon.corner_y方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: obstacle_segment_touches_inside

import geometry.planar.IntOctagon; //导入方法依赖的package包/类
/**
 * Checks, if the border line segment with index p_obstacle_border_line_no intersects with the inside
 * of p_room_shape.
 */
private static boolean obstacle_segment_touches_inside(IntOctagon p_obstacle_shape,
                                                       int p_obstacle_border_line_no, IntOctagon p_room_shape)
{
    int curr_border_line_no = p_obstacle_border_line_no;
    int curr_obstacle_corner_x = p_obstacle_shape.corner_x(p_obstacle_border_line_no);
    int curr_obstacle_corner_y = p_obstacle_shape.corner_y(p_obstacle_border_line_no);
    for (int j = 0; j < 5; ++j)
    {

        if (p_room_shape.side_of_border_line(curr_obstacle_corner_x, curr_obstacle_corner_y,
                curr_border_line_no) != Side.ON_THE_LEFT)
        {
            return false;
        }
        curr_border_line_no = (curr_border_line_no + 1) % 8;
    }

    int next_obstacle_border_line_no = (p_obstacle_border_line_no + 1) % 8;
    int next_obstacle_corner_x = p_obstacle_shape.corner_x(next_obstacle_border_line_no);
    int next_obstacle_corner_y = p_obstacle_shape.corner_y(next_obstacle_border_line_no);
    curr_border_line_no = (p_obstacle_border_line_no + 5) % 8;
    for (int j = 0; j < 3; ++j)
    {
        if (p_room_shape.side_of_border_line(next_obstacle_corner_x, next_obstacle_corner_y,
                curr_border_line_no) != Side.ON_THE_LEFT)
        {
            return false;
        }
        curr_border_line_no = (curr_border_line_no + 1) % 8;
    }
    return true;
}
 
开发者ID:andrasfuchs,项目名称:BioBalanceDetector,代码行数:37,代码来源:ShapeSearchTree45Degree.java


注:本文中的geometry.planar.IntOctagon.corner_y方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。