~hilaire-fernandes/drgeo/trunk

« back to all changes in this revision

Viewing changes to src/DrGeoSpanish.pck.st

  • Committer: Hilaire Fernandes
  • Date: 2023-11-11 02:42:25 UTC
  • Revision ID: hilaire@drgeo.eu-20231111024225-saxkxepqt6l0p4vy
Update spanish messages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
'From Cuis 6.0 [latest update: #5878] on 9 November 2023 at 7:24:24 pm'!
 
1
'From Cuis 6.0 [latest update: #6068] on 11 November 2023 at 3:41:26 am'!
2
2
'Description '!
3
 
!provides: 'DrGeoSpanish' 1 5!
4
 
SystemOrganization addCategory: 'DrGeoSpanish'!
5
 
 
6
 
 
7
 
!classDefinition: #DrGeoFigura category: 'DrGeoSpanish'!
 
3
!provides: 'DrGeoSpanish' 1 6!
 
4
SystemOrganization addCategory: #DrGeoSpanish!
 
5
 
 
6
 
 
7
!classDefinition: #DrGeoFigura category: #DrGeoSpanish!
8
8
DrGeoSketch subclass: #DrGeoFigura
9
9
        instanceVariableNames: ''
10
10
        classVariableNames: ''
11
11
        poolDictionaries: ''
12
12
        category: 'DrGeoSpanish'!
13
 
!classDefinition: 'DrGeoFigura class' category: 'DrGeoSpanish'!
 
13
!classDefinition: 'DrGeoFigura class' category: #DrGeoSpanish!
14
14
DrGeoFigura class
15
15
        instanceVariableNames: ''!
16
16
 
179
179
otraIntersecciónDe: wrpCurve1 en: wrpCurve2
180
180
        ^ self altIntersectionOf: wrpCurve1 and: wrpCurve2 ! !
181
181
 
 
182
!DrGeoFigura methodsFor: 'punto' stamp: 'hlsf 11/11/2023 03:28:09'!
 
183
punto: aPointOrBlock
 
184
        ^ self point: aPointOrBlock ! !
 
185
 
 
186
!DrGeoFigura methodsFor: 'punto' stamp: 'hlsf 11/11/2023 03:34:33'!
 
187
punto: block padre: wrpValue
 
188
        ^ self point: block parent: wrpValue ! !
 
189
 
 
190
!DrGeoFigura methodsFor: 'punto' stamp: 'hlsf 11/11/2023 03:40:39'!
 
191
punto: block padres: wrpValueArray
 
192
        ^ self point: block parents: wrpValueArray ! !
 
193
 
182
194
!DrGeoFigura methodsFor: 'punto' stamp: 'drgeo 11/9/2023 19:02:57'!
183
195
puntoEnLinea: wrpCurve en: abscissa
184
196
        ^ self pointOnLine: wrpCurve at: abscissa! !
185
197
 
 
198
!DrGeoFigura methodsFor: 'punto' stamp: 'hlsf 11/11/2023 03:33:25'!
 
199
puntoX: wrpValue1 Y: wrpValue2
 
200
        ^ self pointX: wrpValue1 Y: wrpValue2 ! !
 
201
 
186
202
!DrGeoFigura methodsFor: 'procesamiento' stamp: 'drgeo 11/9/2023 19:03:21'!
187
203
actualizar
188
204
        ^ self update! !
251
267
trasladoDe: wrpItem porVector: wrpVecteur
252
268
        ^ self translate: wrpItem vector: wrpVecteur! !
253
269
 
254
 
!DrGeoFigura class methodsFor: 'instance creation' stamp: 'drgeo 11/9/2023 14:22:11'!
255
 
nouveau
 
270
!DrGeoFigura class methodsFor: 'instance creation' stamp: 'hlsf 11/11/2023 03:26:22'!
 
271
nueva
256
272
        ^ self new! !