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


Java Line.direction方法代码示例

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


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

示例1: calc_check_chape_for_from_side

import geometry.planar.Line; //导入方法依赖的package包/类
private static  TileShape calc_check_chape_for_from_side(TileShape p_shape,
        Point p_shape_center, Line p_border_line)
{
    FloatPoint shape_center = p_shape_center.to_float();
    FloatPoint offset_projection = shape_center.projection_approx(p_border_line);
    // Make shure, that direction restrictions are retained.
    Line [] line_arr = new Line[3];
    Direction curr_dir = p_border_line.direction();
    line_arr[0] = new Line(p_shape_center, curr_dir);
    line_arr[1] = new Line(p_shape_center, curr_dir.turn_45_degree(2));
    line_arr[2] = new Line(offset_projection.round(), curr_dir);
    Polyline check_line = new Polyline(line_arr);
    return check_line.offset_shape(1, 0);
}
 
开发者ID:andrasfuchs,项目名称:BioBalanceDetector,代码行数:15,代码来源:ForcedPadAlgo.java


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