⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gcp.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.gdal;public class GCP {  private long swigCPtr;  protected boolean swigCMemOwn;  protected GCP(long cPtr, boolean cMemoryOwn) {    swigCMemOwn = cMemoryOwn;    swigCPtr = cPtr;  }  protected static long getCPtr(GCP obj) {    return (obj == null) ? 0 : obj.swigCPtr;  }  protected void finalize() {    delete();  }  public synchronized void delete() {    if(swigCPtr != 0 && swigCMemOwn) {      swigCMemOwn = false;      gdalJNI.delete_GCP(swigCPtr);    }    swigCPtr = 0;  }  protected static long getCPtrAndDisown(GCP obj) {    if (obj != null) obj.swigCMemOwn= false;    return getCPtr(obj);  }  public void setGCPX(double value) {    gdalJNI.GCP_GCPX_set(swigCPtr, this, value);  }  public double getGCPX() {    return gdalJNI.GCP_GCPX_get(swigCPtr, this);  }  public void setGCPY(double value) {    gdalJNI.GCP_GCPY_set(swigCPtr, this, value);  }  public double getGCPY() {    return gdalJNI.GCP_GCPY_get(swigCPtr, this);  }  public void setGCPZ(double value) {    gdalJNI.GCP_GCPZ_set(swigCPtr, this, value);  }  public double getGCPZ() {    return gdalJNI.GCP_GCPZ_get(swigCPtr, this);  }  public void setGCPPixel(double value) {    gdalJNI.GCP_GCPPixel_set(swigCPtr, this, value);  }  public double getGCPPixel() {    return gdalJNI.GCP_GCPPixel_get(swigCPtr, this);  }  public void setGCPLine(double value) {    gdalJNI.GCP_GCPLine_set(swigCPtr, this, value);  }  public double getGCPLine() {    return gdalJNI.GCP_GCPLine_get(swigCPtr, this);  }  public void setInfo(String value) {    gdalJNI.GCP_Info_set(swigCPtr, this, value);  }  public String getInfo() {    return gdalJNI.GCP_Info_get(swigCPtr, this);  }  public void setId(String value) {    gdalJNI.GCP_Id_set(swigCPtr, this, value);  }  public String getId() {    return gdalJNI.GCP_Id_get(swigCPtr, this);  }  public GCP(double x, double y, double z, double pixel, double line, String info, String id) {    this(gdalJNI.new_GCP(x, y, z, pixel, line, info, id), true);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -