View Issue Details

IDProjectCategoryView StatusLast Update
0000362Open CASCADEOCCT:Modeling Algorithmspublic2006-06-29 09:15
Reporterbugmaster Assigned Tobugmaster  
PrioritynormalSeveritytrivial 
Status closedResolutionfixed 
OSAll 
Fixed in Version5.0.0 
Summary0000362: CSR n°BUC60997. Command wzoom in Draw works incorrectly.
DescriptionAfter executing of the command

    wzoom the draw window shows fragment

    other tha
    n that was selected.

    The cause of that is the zoom factor (zx)

    is casted to S
    tandard_Integer before

    multiplication of integer

    coords X1, Y1:

    X1 *= (Stan
    dard_Integer ) zx;

    Y1 *= (Standard_Integer ) zx;

    The correct variant is:

    X1
    = (Standard_Integer ) X1*zx;

    Y1 = (Standard_Integer ) Y1*zx;



    IMPORTANT!!! I
    t is impossible

    to use the current version of wzoom.

    The performance of debug
     process and

    other kinds of activities in Draw

    would be much better with the
    correct

    work of wzoom.
TagsNo tags attached.
Test case number

Attached Files

  • wzoom_patch_C30.tgz (5,732 bytes)
  • wzoom_patch_C40.tgz (5,764 bytes)

Activities

2002-05-14 08:46

 

wzoom_patch_C30.tgz (5,732 bytes)

2002-05-14 09:03

 

wzoom_patch_C40.tgz (5,764 bytes)

Issue History

Date Modified Username Field Change
2002-05-17 13:43 bugmaster Status new => verified
2002-08-01 18:25 bugmaster Status verified => closed
2002-08-01 18:25 bugmaster Resolution @0@ => fixed
2011-08-02 11:31 bugmaster Category OCCT:MOA => OCCT:Modeling Algorithms