Package net.imglib2

Examples of net.imglib2.Point


  @Override
  public NativeImg<Unsigned128BitType, ? extends LongAccess> createSuitableNativeImg( final NativeImgFactory<Unsigned128BitType> storageFactory, final long dim[] )
  {
    // create the container:
    final NativeImg<Unsigned128BitType, ? extends LongAccess> container = storageFactory.createLongInstance( dim, new Fraction( 2, 1 ) );

    // create a Type that is linked to the container
    final Unsigned128BitType linkedType = new Unsigned128BitType( container );

    // pass it to the NativeContainer
View Full Code Here


    copy.set( dataAccess.getValue( k ), dataAccess.getValue( k + 1 ));
    return copy;
  }

  @Override
  public Fraction getEntitiesPerPixel() { return new Fraction( 2, 1 ); }
View Full Code Here

  @Override
  public NativeImg< ComplexFloatType, ? extends FloatAccess > createSuitableNativeImg( final NativeImgFactory< ComplexFloatType > storageFactory, final long dim[] )
  {
    // create the container
    final NativeImg<ComplexFloatType, ? extends FloatAccess> container = storageFactory.createFloatInstance( dim, new Fraction( 2, 1 ) );

    // create a Type that is linked to the container
    final ComplexFloatType linkedType = new ComplexFloatType( container );

    // pass it to the NativeContainer
View Full Code Here

  {
    return new ComplexFloatType( getRealFloat(), getImaginaryFloat() );
  }

  @Override
  public Fraction getEntitiesPerPixel() { return new Fraction( 2, 1 ); }
View Full Code Here

  @Override
  public NativeImg<UnsignedLongType, ? extends LongAccess> createSuitableNativeImg( final NativeImgFactory<UnsignedLongType> storageFactory, final long dim[] )
  {
    // create the container
    final NativeImg<UnsignedLongType, ? extends LongAccess> container = storageFactory.createLongInstance( dim, new Fraction() );

    // create a Type that is linked to the container
    final UnsignedLongType linkedType = new UnsignedLongType( container );

    // pass it to the NativeContainer
View Full Code Here

    return 64;
  }

  @Override
  public Fraction getEntitiesPerPixel() {
    return new Fraction();
  }
View Full Code Here

  @Override
  public NativeImg< ComplexDoubleType, ? extends DoubleAccess > createSuitableNativeImg( final NativeImgFactory< ComplexDoubleType > storageFactory, final long dim[] )
  {
    // create the container
    final NativeImg<ComplexDoubleType, ? extends DoubleAccess> container = storageFactory.createDoubleInstance( dim, new Fraction( 2, 1 ) );

    // create a Type that is linked to the container
    final ComplexDoubleType linkedType = new ComplexDoubleType( container );

    // pass it to the NativeContainer
View Full Code Here

   *            contains the client coordinates to be converted.
   * @return converted point of the sreen coordinates.
   */
  public static Point clientToScreen(int handle, Point point)
  {
    POINT pt = new POINT();
    pt.x = point.x;
    pt.y = point.y;
    OS.ClientToScreen(handle, pt);
    return new Point(pt.x, pt.y);
  }
View Full Code Here

   *            specifies the y-coordinate of the point
   * @return a handle to the window that contains the specified point
   */
  public static int getWindowFromPoint(int x, int y)
  {
    POINT point = new POINT();
    point.x = x;
    point.y = y;
    return Extension.WindowFromPoint(point);
  }
View Full Code Here

   *            screen coordinates.
   * @return converted point of the client-area coordinates.
   */
  public static Point screenToClient(int handle, Point point)
  {
    POINT pt = new POINT();
    pt.x = point.x;
    pt.y = point.y;
    OS.ScreenToClient(handle, pt);
    return new Point(pt.x, pt.y);
  }
View Full Code Here

TOP

Related Classes of net.imglib2.Point

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.