亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? geometry.java

?? 支持各種柵格圖像和矢量圖像讀取的庫
?? JAVA
字號:
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 1.3.31 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */package org.gdal.ogr;import org.gdal.osr.SpatialReference;import org.gdal.osr.CoordinateTransformation;public class Geometry {  private long swigCPtr;  protected boolean swigCMemOwn;  protected Geometry(long cPtr, boolean cMemoryOwn) {    swigCMemOwn = cMemoryOwn;    swigCPtr = cPtr;  }  protected static long getCPtr(Geometry obj) {    return (obj == null) ? 0 : obj.swigCPtr;  }  protected void finalize() {    delete();  }  public synchronized void delete() {    if(swigCPtr != 0 && swigCMemOwn) {      swigCMemOwn = false;      ogrJNI.delete_Geometry(swigCPtr);    }    swigCPtr = 0;  }  protected static long getCPtrAndDisown(Geometry obj) {    if (obj != null) obj.swigCMemOwn= false;    return getCPtr(obj);  }  public Geometry(int type, String wkt, int wkb, String wkb_buf, String gml) {    this(ogrJNI.new_Geometry(type, wkt, wkb, wkb_buf, gml), true);  }  public int ExportToWkt(String[] argout) {    return ogrJNI.Geometry_ExportToWkt(swigCPtr, this, argout);  }  public int ExportToWkb(char[][] nLen, int byte_order) {    return ogrJNI.Geometry_ExportToWkb(swigCPtr, this, nLen, byte_order);  }  public String ExportToGML() {    return ogrJNI.Geometry_ExportToGML(swigCPtr, this);  }  public void AddPoint(double x, double y, double z) {    ogrJNI.Geometry_AddPoint(swigCPtr, this, x, y, z);  }  public int AddGeometryDirectly(Geometry other) {    return ogrJNI.Geometry_AddGeometryDirectly(swigCPtr, this, Geometry.getCPtrAndDisown(other), other);  }  public int AddGeometry(Geometry other) {    return ogrJNI.Geometry_AddGeometry(swigCPtr, this, Geometry.getCPtr(other), other);  }  public Geometry Clone() {    long cPtr = ogrJNI.Geometry_Clone(swigCPtr, this);    return (cPtr == 0) ? null : new Geometry(cPtr, true);  }  public int GetGeometryType() {    return ogrJNI.Geometry_GetGeometryType(swigCPtr, this);  }  public String GetGeometryName() {    return ogrJNI.Geometry_GetGeometryName(swigCPtr, this);  }  public double GetArea() {    return ogrJNI.Geometry_GetArea(swigCPtr, this);  }  public int GetPointCount() {    return ogrJNI.Geometry_GetPointCount(swigCPtr, this);  }  public double GetX(int point) {    return ogrJNI.Geometry_GetX(swigCPtr, this, point);  }  public double GetY(int point) {    return ogrJNI.Geometry_GetY(swigCPtr, this, point);  }  public double GetZ(int point) {    return ogrJNI.Geometry_GetZ(swigCPtr, this, point);  }  public int GetGeometryCount() {    return ogrJNI.Geometry_GetGeometryCount(swigCPtr, this);  }  public void SetPoint(int point, double x, double y, double z) {    ogrJNI.Geometry_SetPoint(swigCPtr, this, point, x, y, z);  }  public Geometry GetGeometryRef(int geom) {    long cPtr = ogrJNI.Geometry_GetGeometryRef(swigCPtr, this, geom);    return (cPtr == 0) ? null : new Geometry(cPtr, false);  }  public Geometry GetBoundary() {    long cPtr = ogrJNI.Geometry_GetBoundary(swigCPtr, this);    return (cPtr == 0) ? null : new Geometry(cPtr, true);  }  public Geometry ConvexHull() {    long cPtr = ogrJNI.Geometry_ConvexHull(swigCPtr, this);    return (cPtr == 0) ? null : new Geometry(cPtr, true);  }  public Geometry Buffer(double distance, int quadsecs) {    long cPtr = ogrJNI.Geometry_Buffer(swigCPtr, this, distance, quadsecs);    return (cPtr == 0) ? null : new Geometry(cPtr, true);  }  public Geometry Intersection(Geometry other) {    long cPtr = ogrJNI.Geometry_Intersection(swigCPtr, this, Geometry.getCPtr(other), other);    return (cPtr == 0) ? null : new Geometry(cPtr, true);  }  public Geometry Union(Geometry other) {    long cPtr = ogrJNI.Geometry_Union(swigCPtr, this, Geometry.getCPtr(other), other);    return (cPtr == 0) ? null : new Geometry(cPtr, true);  }  public Geometry Difference(Geometry other) {    long cPtr = ogrJNI.Geometry_Difference(swigCPtr, this, Geometry.getCPtr(other), other);    return (cPtr == 0) ? null : new Geometry(cPtr, true);  }  public Geometry SymmetricDifference(Geometry other) {    long cPtr = ogrJNI.Geometry_SymmetricDifference(swigCPtr, this, Geometry.getCPtr(other), other);    return (cPtr == 0) ? null : new Geometry(cPtr, true);  }  public double Distance(Geometry other) {    return ogrJNI.Geometry_Distance(swigCPtr, this, Geometry.getCPtr(other), other);  }  public void Empty() {    ogrJNI.Geometry_Empty(swigCPtr, this);  }  public boolean Intersect(Geometry other) {    return ogrJNI.Geometry_Intersect(swigCPtr, this, Geometry.getCPtr(other), other);  }  public boolean Equal(Geometry other) {    return ogrJNI.Geometry_Equal(swigCPtr, this, Geometry.getCPtr(other), other);  }  public boolean Disjoint(Geometry other) {    return ogrJNI.Geometry_Disjoint(swigCPtr, this, Geometry.getCPtr(other), other);  }  public boolean Touches(Geometry other) {    return ogrJNI.Geometry_Touches(swigCPtr, this, Geometry.getCPtr(other), other);  }  public boolean Crosses(Geometry other) {    return ogrJNI.Geometry_Crosses(swigCPtr, this, Geometry.getCPtr(other), other);  }  public boolean Within(Geometry other) {    return ogrJNI.Geometry_Within(swigCPtr, this, Geometry.getCPtr(other), other);  }  public boolean Contains(Geometry other) {    return ogrJNI.Geometry_Contains(swigCPtr, this, Geometry.getCPtr(other), other);  }  public boolean Overlaps(Geometry other) {    return ogrJNI.Geometry_Overlaps(swigCPtr, this, Geometry.getCPtr(other), other);  }  public int TransformTo(SpatialReference reference) {    return ogrJNI.Geometry_TransformTo(swigCPtr, this, SpatialReference.getCPtr(reference), reference);  }  public int Transform(CoordinateTransformation trans) {    return ogrJNI.Geometry_Transform(swigCPtr, this, CoordinateTransformation.getCPtr(trans), trans);  }  public SpatialReference GetSpatialReference() {    long cPtr = ogrJNI.Geometry_GetSpatialReference(swigCPtr, this);    return (cPtr == 0) ? null : new SpatialReference(cPtr, false);  }  public void AssignSpatialReference(SpatialReference reference) {    ogrJNI.Geometry_AssignSpatialReference(swigCPtr, this, SpatialReference.getCPtr(reference), reference);  }  public void CloseRings() {    ogrJNI.Geometry_CloseRings(swigCPtr, this);  }  public void FlattenTo2D() {    ogrJNI.Geometry_FlattenTo2D(swigCPtr, this);  }  public void GetEnvelope(double[] argout) {    ogrJNI.Geometry_GetEnvelope(swigCPtr, this, argout);  }  public Geometry Centroid() {    long cPtr = ogrJNI.Geometry_Centroid(swigCPtr, this);    return (cPtr == 0) ? null : new Geometry(cPtr, true);  }  public int WkbSize() {    return ogrJNI.Geometry_WkbSize(swigCPtr, this);  }  public int GetCoordinateDimension() {    return ogrJNI.Geometry_GetCoordinateDimension(swigCPtr, this);  }  public void SetCoordinateDimension(int dimension) {    ogrJNI.Geometry_SetCoordinateDimension(swigCPtr, this, dimension);  }  public int GetDimension() {    return ogrJNI.Geometry_GetDimension(swigCPtr, this);  }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩国产小视频| 91福利国产精品| 天天色 色综合| 日韩理论在线观看| 免费成人av在线| 亚洲永久精品国产| 国产精品视频九色porn| 久久久久久久综合日本| 精品国产91九色蝌蚪| 欧美一区二区在线播放| 欧美一卡二卡三卡| 中文无字幕一区二区三区| 国产一区欧美一区| 麻豆精品新av中文字幕| 久久综合九色综合欧美亚洲| 日韩欧美一二三区| 日韩免费电影网站| 日韩欧美一区二区在线视频| 国产精品中文有码| 韩国精品久久久| 不卡一区在线观看| 欧美中文字幕一区二区三区 | 精品国产一二三| 久久新电视剧免费观看| 99精品在线观看视频| 色天使久久综合网天天| 91精品国产手机| 日韩一区二区三区三四区视频在线观看| 国产精品一区二区三区四区 | 裸体健美xxxx欧美裸体表演| 久99久精品视频免费观看| 粉嫩一区二区三区在线看| 色视频欧美一区二区三区| 国产精品亚洲一区二区三区妖精 | 日韩欧美国产不卡| 欧美激情自拍偷拍| 亚洲综合999| 国产精品69毛片高清亚洲| 日韩二区三区四区| 国产精品一区二区在线观看不卡 | 欧美极品aⅴ影院| 日韩av午夜在线观看| 成人a级免费电影| 欧美一级xxx| 夜夜操天天操亚洲| 国产精品一区二区在线观看网站 | 日韩国产欧美在线视频| 国产成都精品91一区二区三| 欧美精品欧美精品系列| 欧美日韩电影在线播放| 欧美精品久久99久久在免费线| 日本伦理一区二区| 国产精品乱码一区二区三区软件 | 国产亚洲综合在线| 婷婷六月综合网| 欧美日韩视频在线观看一区二区三区| 色综合亚洲欧洲| 国产精品初高中害羞小美女文| 欧美高清在线视频| 欧美国产激情二区三区| 国产专区欧美精品| 久久午夜电影网| 国产在线国偷精品免费看| 欧美一区二区三区成人| 天堂蜜桃91精品| 91国产成人在线| 亚洲自拍偷拍网站| 欧美性猛交一区二区三区精品| 欧美日韩激情一区| 亚洲国产婷婷综合在线精品| 欧美天堂一区二区三区| 亚洲成人自拍网| 国产午夜精品久久久久久免费视| 国产亚洲va综合人人澡精品| 激情综合一区二区三区| 日本一区二区三区视频视频| 99riav久久精品riav| 亚洲国产一区二区三区青草影视| 免费人成黄页网站在线一区二区 | 日韩欧美亚洲国产精品字幕久久久| 久久亚洲二区三区| 成人深夜在线观看| 日韩手机在线导航| 福利一区二区在线| 尤物在线观看一区| 日韩欧美亚洲一区二区| 成人黄色软件下载| 性做久久久久久免费观看欧美| 成人免费高清视频在线观看| 亚洲综合图片区| 国产精品视频一二三| 欧美日韩aaaaa| 99re亚洲国产精品| 久久电影网站中文字幕 | 在线视频欧美精品| 亚洲高清免费视频| 中文字幕不卡的av| 国产一区二区精品久久| 欧美成人激情免费网| 日本福利一区二区| bt7086福利一区国产| 九九精品视频在线看| 亚洲1区2区3区4区| 3d动漫精品啪啪一区二区竹菊| 一区二区三区加勒比av| 久久精品人人做人人综合 | 51精品国自产在线| 日本丶国产丶欧美色综合| 亚洲在线一区二区三区| 日本一区二区三级电影在线观看 | 欧美午夜精品一区二区蜜桃| 99精品欧美一区二区三区综合在线| 中文字幕制服丝袜成人av | 国产精品一二三四| 经典三级视频一区| 国产一区高清在线| 国产伦精一区二区三区| 久久精品视频一区二区| 欧美成人一区二区三区片免费| 国产一区二区三区视频在线播放| 久久色在线视频| 国产欧美在线观看一区| 中文天堂在线一区| 中文字幕一区免费在线观看| 亚洲丝袜美腿综合| 亚洲成人三级小说| 日本不卡的三区四区五区| 欧美经典一区二区| 国产精品少妇自拍| 亚洲国产精品人人做人人爽| 亚洲高清视频在线| 久久精品国产77777蜜臀| 国产成人av影院| 在线视频你懂得一区| 日韩视频在线一区二区| 亚洲国产高清aⅴ视频| 亚洲狠狠丁香婷婷综合久久久| 久久视频一区二区| 自拍偷拍亚洲欧美日韩| 蜜臀av性久久久久蜜臀aⅴ| 国产精品99久久久久久似苏梦涵| 亚洲一区二区三区四区不卡| 免费成人在线观看视频| 国产91精品精华液一区二区三区| 日本不卡高清视频| 成人激情免费网站| 欧美精品一区二区三区很污很色的 | 一区二区三区四区亚洲| 欧美午夜精品免费| 日本韩国欧美一区| 国产拍揄自揄精品视频麻豆| 蜜桃av噜噜一区二区三区小说| 亚洲影视在线观看| 成人福利在线看| 久久综合久久综合亚洲| 午夜精品久久久久久不卡8050| 亚洲国产欧美一区二区三区丁香婷| 国产精品第四页| 极品少妇一区二区三区精品视频| 麻豆精品在线视频| 欧美日本国产视频| 亚洲综合一区二区精品导航| 成人h动漫精品一区二| 国产精品视频麻豆| 成人涩涩免费视频| 欧美性生活影院| 亚洲综合成人网| 欧美色爱综合网| 日韩欧美国产成人一区二区| 日韩综合小视频| 日韩欧美国产一二三区| 麻豆精品蜜桃视频网站| 欧美成人女星排名| 国产伦精品一区二区三区视频青涩| 丁香桃色午夜亚洲一区二区三区| 91啪九色porn原创视频在线观看| 91丨九色丨国产丨porny| 亚洲精品欧美二区三区中文字幕| 欧美aaaaa成人免费观看视频| 国产成人一区在线| 在线影院国内精品| 日韩亚洲欧美高清| 国产suv精品一区二区6| 国产农村妇女精品| 亚洲欧美日韩国产综合在线| 欧美日韩国产中文| 日本韩国欧美一区| 99麻豆久久久国产精品免费| 精品处破学生在线二十三| www.日韩av| 开心九九激情九九欧美日韩精美视频电影| 成人v精品蜜桃久久一区| 亚洲成av人片在线| 在线观看日韩电影| 国产一区二区三区免费看| 亚洲一区二区三区激情| 国产精品乱码一区二三区小蝌蚪| 国产精品自拍在线| 久久99日本精品| 婷婷久久综合九色综合绿巨人|