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


PHP map::ss2xy方法代码示例

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


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

示例1: calcdist

function calcdist($sys1, $sys2)
{
    //Pour avoir l'abscisse des coordonnées du système 1 [syst1 = 2456 ax = 2456%100]
    //Pour avoir l'ordonée des coordonnées du système 1 [syst1 = 2456 ay = (2456-2456%100)/100]
    list($syst1y, $syst1x) = map::ss2xy($sys1);
    list($syst2y, $syst2x) = map::ss2xy($sys2);
    return round(round(round(sqrt(carre($syst1x - $syst2x) + carre($syst1y - $syst2y)), 2), 1), 0);
}
开发者ID:google-code-backups,项目名称:eude,代码行数:8,代码来源:fonction.php

示例2: path

 public function path($CoordA, $CoordB)
 {
     list($sX, $sY) = map::ss2xy($CoordA);
     list($sX2, $sY2) = map::ss2xy($CoordB);
     $x1 = floor($this->tc * $sX - $this->tc / 2);
     $y1 = floor($this->tc * ($sY + 1) - $this->tc / 2);
     $x2 = floor($this->tc * $sX2 - $this->tc / 2);
     $y2 = floor($this->tc * ($sY2 + 1) - $this->tc / 2);
     imageline($this->im, $x1, $y1, $x2, $y2, $this->color);
 }
开发者ID:google-code-backups,项目名称:eude,代码行数:10,代码来源:img.class.php

示例3: img_dot

function img_dot($image, $coord, $clr)
{
    $tc = map::getinstance()->taille / 100;
    $td = floor($tc / 2);
    $td = $td % 2 ? $td + 3 : $td + 2;
    list($sX, $sY) = map::ss2xy($coord);
    $x1 = floor($tc * $sX - $tc / 2);
    $y1 = floor($tc * ($sY + 1) - $tc / 2);
    imagefilledellipse($image, $x1, $y1, $td, $td, $clr);
}
开发者ID:google-code-backups,项目名称:eude,代码行数:10,代码来源:img.php

示例4: GetListeCoorByRay

 public function GetListeCoorByRay($SS, $max_dist)
 {
     // 4890 = 90:48
     // 1 = 0001 = 1: 0
     // 10000 = 100: 0
     list($x, $y) = map::ss2xy($SS);
     // Warn: x/y s'inverse ;)
     $lst = array();
     for ($a = 0 - $max_dist; $a <= 0 + $max_dist; $a++) {
         for ($b = 0 - $max_dist; $b <= 0 + $max_dist; $b++) {
             $y1 = $b + $y;
             $x1 = $a + $x;
             $out = $y1 * 100 + $x1;
             if ($y1 < 0 || $y1 > 99) {
                 continue;
             }
             if ($x1 < 1 || $x1 > 100) {
                 continue;
             }
             if ($x1 == 100) {
                 $x1 = 0;
             }
             $out = $y1 * 100 + $x1;
             if ($this->Calcul_Distance($SS, $out) < $max_dist) {
                 $lst[] = $out;
             }
         }
     }
     return $lst;
 }
开发者ID:google-code-backups,项目名称:eude,代码行数:30,代码来源:map.class.php


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