Opened 12 years ago

Closed 12 years ago

#279 closed defect (fixed)

Some text bugs related to tiles: derivation of columnWidth[] etc. in 7.4.2.1

Reported by: yk Owned by: bbross
Priority: minor Milestone:
Component: Text Version: WD5 (G1103) d2
Keywords: tiles Cc: jct-vc@…

Description

Besides editorial bugs, all the four equations are not complete by missing one value for each array not covered. Suggested changes are as follows.

  1. In the following sentence, replace "num_tile_columns_minus1" with "num_tile_columns_minus1 + 1":

"The vector columnWidth[ ], specifying the width for every of the num_tile_columns_minus1 columns in units of treeblocks, is derived as follows."

  1. In the equation for derivation of columnWidth[] (BTW, the equation number is incorrect, therefore citing the equation number does not work - same for many other equations), replace "for( i = 0; i < num_tile_columns_minus1; i++ )" with "for( i = 0; i <= num_tile_columns_minus1; i++ )".
  1. In the following sentence, replace "num_tile_rows_minus1" with "num_tile_rows_minus1 + 1"

"The vector rowHeight[ ], specifying the height for every of the num_tile_rows_minus1 rows in units of treeblocks, is derived as follows."

  1. In the equation for derivation of rowHeight[], replace "for( i = 0; i < num_tile_rows_minus1; i++ )" with "for( i = 0; i <= num_tile_rows_minus1; i++ )".
  1. Replace the equation for derivation of colBd[] with the following:

colBd[0] = 0
for( i = 0; i <= num_tile_columns_minus1; i++ )

colBd[i+1] = colBd[i] + columnWidth[i]

  1. Replace the equation for derivation of rowBd[] with the following:

rowBd[0] = 0
for( i = 0; i <= num_tile_rows_minus1; i++ )

rowBd[i+1] = rowBd[i] + rowHeight[i]

Change History (3)

comment:1 Changed 12 years ago by davidf

  • Component changed from CHANGEME to Text
  • Owner changed from davidf to bbross

comment:2 Changed 12 years ago by davidf

  • Cc jct-vc@… added

comment:3 Changed 12 years ago by bbross

  • Resolution set to fixed
  • Status changed from new to closed

Fixed in D6 (H1003) d9.

Note: See TracTickets for help on using tickets.

This list contains all users that will be notified about changes made to this ticket.

These roles will be notified: Reporter, Owner, Subscriber, Participant

  • Benjamin Bross(Owner, Participant)
  • David Flynn(Participant)
  • jct-vc@…(Subscriber)
  • karl.sharman@…(Always)
  • Karsten Suehring(Always)
  • Ye-Kui Wang(Reporter)