Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus-project / usr / share / lazarus / 2.0.10 / components / aggpas / src / agg_bounding_rect.pas
Size: Mime:
//----------------------------------------------------------------------------
// Anti-Grain Geometry - Version 2.4 (Public License)
// Copyright (C) 2002-2005 Maxim Shemanarev (http://www.antigrain.com)
//
// Anti-Grain Geometry - Version 2.4 Release Milano 3 (AggPas 2.4 RM3)
// Pascal Port By: Milan Marusinec alias Milano
//                 milan@marusinec.sk
//                 http://www.aggpas.org
// Copyright (c) 2005-2006
//
// Permission to copy, use, modify, sell and distribute this software
// is granted provided this copyright notice appears in all copies.
// This software is provided "as is" without express or implied
// warranty, and with no claim as to its suitability for any purpose.
//
//----------------------------------------------------------------------------
// Contact: mcseem@antigrain.com
//          mcseemagg@yahoo.com
//          http://www.antigrain.com
//
// [Pascal Port History] -----------------------------------------------------
//
// 23.06.2006-Milano: ptrcomp adjustments
// 05.02.2006-Milano: Unit port establishment
//
{ agg_bounding_rect.pas }
unit
 agg_bounding_rect ;

INTERFACE

{$I agg_mode.inc }

uses
 agg_basics ,
 agg_vertex_source ;

{ GLOBAL PROCEDURES }
 function bounding_rect(
           vs : vertex_source_ptr;
           gi : unsigned_ptr;
           start ,num : unsigned;
           x1 ,y1 ,x2 ,y2 : double_ptr ) : boolean;

 function bounding_rect_vs(
           vs ,
           gi : vertex_source_ptr;
           start ,num : unsigned;
           x1 ,y1 ,x2 ,y2 : double_ptr ) : boolean;

 function bounding_rect_ul(
           vs : vertex_source_ptr;
           ul : unsigned_list_ptr;
           start ,num : unsigned;
           x1 ,y1 ,x2 ,y2 : double_ptr ) : boolean;

 function bounding_rect_single(
           vs : vertex_source_ptr;
           path_id : unsigned;
           x1 ,y1 ,x2 ,y2 : double_ptr ) : boolean;

 function bounding_rect_all_paths(
           vs : vertex_source_ptr;
           x1 ,y1 ,x2 ,y2 : double_ptr ) : boolean;

IMPLEMENTATION
{ LOCAL VARIABLES & CONSTANTS }
{ UNIT IMPLEMENTATION }
{ BOUNDING_RECT }
function bounding_rect;
var
 i ,cmd : unsigned;

 x ,y : double;

 first : boolean;

begin
 first:=true;

 x1^:=1;
 y1^:=1;
 x2^:=0;
 y2^:=0;

 i:=0;

 while i < num do
  begin
   vs.rewind(unsigned_ptr(ptrcomp(gi ) + (start + i ) * sizeof(unsigned ) )^ );

   cmd:=vs.vertex(@x ,@y );

   while not is_stop(cmd ) do
    begin
     if is_vertex(cmd ) then
      if first then
       begin
        x1^:=x;
        y1^:=y;
        x2^:=x;
        y2^:=y;
        
        first:=false;

       end
      else
       begin
        if x < x1^ then
         x1^:=x;

        if y < y1^ then
         y1^:=y;

        if x > x2^ then
         x2^:=x;

        if y > y2^ then
         y2^:=y;

       end;

     cmd:=vs.vertex(@x ,@y );

    end;

   inc(i );

  end;

 result:=(x1^ <= x2^ ) and (y1^ <= y2^ );

end;

{ BOUNDING_RECT_VS }
function bounding_rect_vs;
var
 i ,cmd : unsigned;

 x ,y : double;

 first : boolean;

begin
 first:=true;

 x1^:=1;
 y1^:=1;
 x2^:=0;
 y2^:=0;

 i:=0;

 while i < num do
  begin
   vs.rewind(gi.operator_array(start + i ) );

   cmd:=vs.vertex(@x ,@y );

   while not is_stop(cmd ) do
    begin
     if is_vertex(cmd ) then
      if first then
       begin
        x1^:=x;
        y1^:=y;
        x2^:=x;
        y2^:=y;
        
        first:=false;

       end
      else
       begin
        if x < x1^ then
         x1^:=x;

        if y < y1^ then
         y1^:=y;

        if x > x2^ then
         x2^:=x;

        if y > y2^ then
         y2^:=y;

       end;

     cmd:=vs.vertex(@x ,@y );

    end;

   inc(i );

  end;

 result:=(x1^ <= x2^ ) and (y1^ <= y2^ );

end;

{ BOUNDING_RECT_UL }
function bounding_rect_ul;
var
 i ,cmd : unsigned;

 x ,y : double;

 first : boolean;

begin
 first:=true;

 x1^:=1;
 y1^:=1;
 x2^:=0;
 y2^:=0;

 i:=0;

 while i < num do
  begin
   vs.rewind(ul.array_operator(start + i ) );

   cmd:=vs.vertex(@x ,@y );

   while not is_stop(cmd ) do
    begin
     if is_vertex(cmd ) then
      if first then
       begin
        x1^:=x;
        y1^:=y;
        x2^:=x;
        y2^:=y;
        
        first:=false;

       end
      else
       begin
        if x < x1^ then
         x1^:=x;

        if y < y1^ then
         y1^:=y;

        if x > x2^ then
         x2^:=x;

        if y > y2^ then
         y2^:=y;

       end;

     cmd:=vs.vertex(@x ,@y );

    end;

   inc(i );

  end;

 result:=(x1^ <= x2^ ) and (y1^ <= y2^ );

end;

{ BOUNDING_RECT_SINGLE }
function bounding_rect_single;
var
 cmd   : unsigned;
 x ,y  : double;
 first : boolean;

begin
 first:=true;

 x1^:=1;
 y1^:=1;
 x2^:=0;
 y2^:=0;

 vs.rewind(path_id );

 cmd:=vs.vertex(@x ,@y );

 while not is_stop(cmd ) do
  begin
   if is_vertex(cmd ) then
    if first then
     begin
      x1^:=x;
      y1^:=y;
      x2^:=x;
      y2^:=y;

      first:=false;

     end
    else
     begin
      if x < x1^ then
       x1^:=x;

      if y < y1^ then
       y1^:=y;

      if x > x2^ then
       x2^:=x;

      if y > y2^ then
       y2^:=y;

     end;

   cmd:=vs.vertex(@x ,@y );

  end;

 result:=
  (x1^ <= x2^ ) and
  (y1^ <= y2^ );

end;

{ BOUNDING_RECT_ALL_PATHS }
function bounding_rect_all_paths(
          vs : vertex_source_ptr;
          x1 ,y1 ,x2 ,y2 : double_ptr ) : boolean;
var
 i ,paths : unsigned;

 sx1 ,sy1 ,sx2 ,sy2 : double;

 first : boolean;

begin
 first:=true;
 paths:=vs.num_paths;

 x1^:=1;
 y1^:=1;
 x2^:=0;
 y2^:=0;

 i:=0;

 while i < paths do
  begin
   if bounding_rect_single(vs ,i ,@sx1 ,@sy1 ,@sx2 ,@sy2 ) then
    begin
     if first then
      begin
       x1^:=sx1;
       y1^:=sy1;
       x2^:=sx2;
       y2^:=sy2;

      end
     else
      begin
       if sx1 < x1^ then
        x1^:=sx1;

       if sy1 < y1^ then
        y1^:=sy1;

       if sx2 > x2^ then
        x2^:=sx2;

       if sy2 > y2^ then
        y2^:=sy2;

      end;

     first:=false;

    end;

   inc(i );

  end;

 result:=
  (x1^ <= x2^ ) and
  (y1^ <= y2^ );

end;

END.